Left: | ||
Right: |
LEFT | RIGHT |
---|---|
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 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
457 'widget/TabThumbnailWrapper.java', | 457 'widget/TabThumbnailWrapper.java', |
458 'widget/ThumbnailView.java', | 458 'widget/ThumbnailView.java', |
459 'widget/TwoWayView.java', | 459 'widget/TwoWayView.java', |
460 'ZoomConstraints.java', | 460 'ZoomConstraints.java', |
461 ] | 461 ] |
462 gbjar.sources += [ thirdparty_source_dir + f for f in [ | 462 gbjar.sources += [ thirdparty_source_dir + f for f in [ |
463 'com/googlecode/eyesfree/braille/selfbraille/ISelfBrailleService.java', | 463 'com/googlecode/eyesfree/braille/selfbraille/ISelfBrailleService.java', |
464 'com/googlecode/eyesfree/braille/selfbraille/SelfBrailleClient.java', | 464 'com/googlecode/eyesfree/braille/selfbraille/SelfBrailleClient.java', |
465 'com/googlecode/eyesfree/braille/selfbraille/WriteData.java', | 465 'com/googlecode/eyesfree/braille/selfbraille/WriteData.java', |
466 ] ] | 466 ] ] |
467 # Adblock Plus browser | 467 # Adblock Browser |
Felix Dahlke
2015/03/22 13:52:34
"Adblock Browser", they call it :)
René Jeschke
2015/03/22 15:32:59
Done.
| |
468 gbjar.sources += [ thirdparty_source_dir + f for f in [ | 468 gbjar.sources += [ thirdparty_source_dir + f for f in [ |
469 'org/adblockplus/browser/AbpCheckBoxPreference.java', | 469 'org/adblockplus/browser/AbpCheckBoxPreference.java', |
470 'org/adblockplus/browser/AdblockPlusApiCallback.java', | 470 'org/adblockplus/browser/AdblockPlusApiCallback.java', |
471 'org/adblockplus/browser/AddOnBridge.java', | 471 'org/adblockplus/browser/AddOnBridge.java', |
472 ] ] | 472 ] ] |
473 | 473 |
474 android_package_dir = CONFIG['ANDROID_PACKAGE_NAME'].replace('.', '/') | 474 android_package_dir = CONFIG['ANDROID_PACKAGE_NAME'].replace('.', '/') |
475 gbjar.generated_sources += [ | 475 gbjar.generated_sources += [ |
476 'org/mozilla/gecko/SysInfo.java', | 476 'org/mozilla/gecko/SysInfo.java', |
477 'org/mozilla/gecko/widget/ThemedEditText.java', | 477 'org/mozilla/gecko/widget/ThemedEditText.java', |
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
818 searchres.res = SRCDIR + '/../search/res' | 818 searchres.res = SRCDIR + '/../search/res' |
819 | 819 |
820 searchres.included_projects += ['../' + static.name, '../' + generated.name, '../' + branding.name] | 820 searchres.included_projects += ['../' + static.name, '../' + generated.name, '../' + branding.name] |
821 searchres.referenced_projects += ['../' + static.name, '../' + generated.nam e, '../' + branding.name] | 821 searchres.referenced_projects += ['../' + static.name, '../' + generated.nam e, '../' + branding.name] |
822 | 822 |
823 resources.included_projects += ['../' + searchres.name] | 823 resources.included_projects += ['../' + searchres.name] |
824 resources.referenced_projects += ['../' + searchres.name] | 824 resources.referenced_projects += ['../' + searchres.name] |
825 | 825 |
826 # The Search Activity code is built as part of Fennec, so we follow suit in Eclipse. | 826 # The Search Activity code is built as part of Fennec, so we follow suit in Eclipse. |
827 main.add_classpathentry('search', TOPSRCDIR + '/mobile/android/search/java', dstdir='search') | 827 main.add_classpathentry('search', TOPSRCDIR + '/mobile/android/search/java', dstdir='search') |
LEFT | RIGHT |