OLD | NEW |
1 # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- | 1 # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- |
2 # vim: set filetype=python: | 2 # vim: set filetype=python: |
3 # This Source Code Form is subject to the terms of the Mozilla Public | 3 # This Source Code Form is subject to the terms of the Mozilla Public |
4 # License, v. 2.0. If a copy of the MPL was not distributed with this | 4 # License, v. 2.0. If a copy of the MPL was not distributed with this |
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. | 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
6 | 6 |
7 DIRS += ['locales'] | 7 DIRS += ['locales'] |
8 SPHINX_TREES['fennec'] = 'docs' | 8 SPHINX_TREES['fennec'] = 'docs' |
9 | 9 |
10 include('android-services.mozbuild') | 10 include('android-services.mozbuild') |
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
545 'com/googlecode/eyesfree/braille/selfbraille/ISelfBrailleService.java', | 545 'com/googlecode/eyesfree/braille/selfbraille/ISelfBrailleService.java', |
546 'com/googlecode/eyesfree/braille/selfbraille/SelfBrailleClient.java', | 546 'com/googlecode/eyesfree/braille/selfbraille/SelfBrailleClient.java', |
547 'com/googlecode/eyesfree/braille/selfbraille/WriteData.java', | 547 'com/googlecode/eyesfree/braille/selfbraille/WriteData.java', |
548 ] ] | 548 ] ] |
549 # Adblock Browser | 549 # Adblock Browser |
550 gbjar.sources += [ thirdparty_source_dir + f for f in [ | 550 gbjar.sources += [ thirdparty_source_dir + f for f in [ |
551 'org/adblockplus/browser/AbpCheckBoxPreference.java', | 551 'org/adblockplus/browser/AbpCheckBoxPreference.java', |
552 'org/adblockplus/browser/AdblockPlusApiCallback.java', | 552 'org/adblockplus/browser/AdblockPlusApiCallback.java', |
553 'org/adblockplus/browser/AddOnBridge.java', | 553 'org/adblockplus/browser/AddOnBridge.java', |
554 'org/adblockplus/browser/BrowserAppUtils.java', | 554 'org/adblockplus/browser/BrowserAppUtils.java', |
| 555 'org/adblockplus/browser/MoreSubscriptionsPreferenceGroup.java', |
555 'org/adblockplus/browser/StartPane.java', | 556 'org/adblockplus/browser/StartPane.java', |
| 557 'org/adblockplus/browser/SubscriptionContainer.java', |
556 'org/adblockplus/browser/SubscriptionPreferenceCategory.java', | 558 'org/adblockplus/browser/SubscriptionPreferenceCategory.java', |
| 559 'org/adblockplus/browser/UrlInputDialog.java', |
| 560 'org/adblockplus/browser/UrlInputOpenerPreference.java', |
557 ] ] | 561 ] ] |
558 | 562 |
559 android_package_dir = CONFIG['ANDROID_PACKAGE_NAME'].replace('.', '/') | 563 android_package_dir = CONFIG['ANDROID_PACKAGE_NAME'].replace('.', '/') |
560 gbjar.generated_sources = [] # Keep it this way. | 564 gbjar.generated_sources = [] # Keep it this way. |
561 gbjar.extra_jars += [ | 565 gbjar.extra_jars += [ |
562 'constants.jar' | 566 'constants.jar' |
563 ] | 567 ] |
564 if CONFIG['MOZ_CRASHREPORTER']: | 568 if CONFIG['MOZ_CRASHREPORTER']: |
565 gbjar.sources += [ 'CrashReporter.java' ] | 569 gbjar.sources += [ 'CrashReporter.java' ] |
566 ANDROID_RES_DIRS += [ SRCDIR + '/crashreporter/res' ] | 570 ANDROID_RES_DIRS += [ SRCDIR + '/crashreporter/res' ] |
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
945 resources.included_projects += ['../' + crashreporter.name] | 949 resources.included_projects += ['../' + crashreporter.name] |
946 resources.referenced_projects += ['../' + crashreporter.name] | 950 resources.referenced_projects += ['../' + crashreporter.name] |
947 | 951 |
948 if CONFIG['MOZ_ANDROID_MLS_STUMBLER']: | 952 if CONFIG['MOZ_ANDROID_MLS_STUMBLER']: |
949 main.included_projects += ['../FennecStumbler'] | 953 main.included_projects += ['../FennecStumbler'] |
950 main.referenced_projects += ['../FennecStumbler'] | 954 main.referenced_projects += ['../FennecStumbler'] |
951 | 955 |
952 if CONFIG['MOZ_ANDROID_SEARCH_ACTIVITY']: | 956 if CONFIG['MOZ_ANDROID_SEARCH_ACTIVITY']: |
953 # The Search Activity code is built as part of Fennec, so we follow suit in
Eclipse. | 957 # The Search Activity code is built as part of Fennec, so we follow suit in
Eclipse. |
954 main.add_classpathentry('search', TOPSRCDIR + '/mobile/android/search/java',
dstdir='search') | 958 main.add_classpathentry('search', TOPSRCDIR + '/mobile/android/search/java',
dstdir='search') |
OLD | NEW |