tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

moz.build (1088B)


      1 # This Source Code Form is subject to the terms of the Mozilla Public
      2 # License, v. 2.0. If a copy of the MPL was not distributed with this
      3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      4 
      5 with Files("**"):
      6     BUG_COMPONENT = ("Core", "Networking: Cookies")
      7 
      8 EXPORTS.mozilla.dom += [
      9     "CookieChangeEvent.h",
     10     "CookieStore.h",
     11     "CookieStoreChild.h",
     12     "CookieStoreManager.h",
     13     "CookieStoreParent.h",
     14     "CookieStoreSubscriptionService.h",
     15     "ExtendableCookieChangeEvent.h",
     16 ]
     17 
     18 UNIFIED_SOURCES += [
     19     "CookieChangeEvent.cpp",
     20     "CookieStore.cpp",
     21     "CookieStoreChild.cpp",
     22     "CookieStoreManager.cpp",
     23     "CookieStoreNotificationWatcher.cpp",
     24     "CookieStoreNotificationWatcherWrapper.cpp",
     25     "CookieStoreNotifier.cpp",
     26     "CookieStoreParent.cpp",
     27     "CookieStoreSubscriptionService.cpp",
     28     "ExtendableCookieChangeEvent.cpp",
     29 ]
     30 
     31 LOCAL_INCLUDES += [
     32     "../base",
     33     "../events",
     34     "/toolkit/components/jsoncpp/include",
     35 ]
     36 
     37 IPDL_SOURCES += [
     38     "PCookieStore.ipdl",
     39 ]
     40 
     41 include("/ipc/chromium/chromium-config.mozbuild")
     42 
     43 FINAL_LIBRARY = "xul"