| 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 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 | 
 |  468 gbjar.sources += [ thirdparty_source_dir + f for f in [ | 
 |  469     'org/adblockplus/browser/AbpCheckBoxPreference.java', | 
 |  470     'org/adblockplus/browser/AdblockPlusApiCallback.java', | 
 |  471     'org/adblockplus/browser/AddonBridge.java', | 
 |  472 ] ] | 
 |  473  | 
|  467 android_package_dir = CONFIG['ANDROID_PACKAGE_NAME'].replace('.', '/') |  474 android_package_dir = CONFIG['ANDROID_PACKAGE_NAME'].replace('.', '/') | 
|  468 gbjar.generated_sources += [ |  475 gbjar.generated_sources += [ | 
|  469     'org/mozilla/gecko/SysInfo.java', |  476     'org/mozilla/gecko/SysInfo.java', | 
|  470     'org/mozilla/gecko/widget/ThemedEditText.java', |  477     'org/mozilla/gecko/widget/ThemedEditText.java', | 
|  471     'org/mozilla/gecko/widget/ThemedImageButton.java', |  478     'org/mozilla/gecko/widget/ThemedImageButton.java', | 
|  472     'org/mozilla/gecko/widget/ThemedImageView.java', |  479     'org/mozilla/gecko/widget/ThemedImageView.java', | 
|  473     'org/mozilla/gecko/widget/ThemedLinearLayout.java', |  480     'org/mozilla/gecko/widget/ThemedLinearLayout.java', | 
|  474     'org/mozilla/gecko/widget/ThemedRelativeLayout.java', |  481     'org/mozilla/gecko/widget/ThemedRelativeLayout.java', | 
|  475     'org/mozilla/gecko/widget/ThemedTextSwitcher.java', |  482     'org/mozilla/gecko/widget/ThemedTextSwitcher.java', | 
|  476     'org/mozilla/gecko/widget/ThemedTextView.java', |  483     'org/mozilla/gecko/widget/ThemedTextView.java', | 
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  811     searchres.res = SRCDIR + '/../search/res' |  818     searchres.res = SRCDIR + '/../search/res' | 
|  812  |  819  | 
|  813     searchres.included_projects += ['../' + static.name, '../' + generated.name,
      '../' + branding.name] |  820     searchres.included_projects += ['../' + static.name, '../' + generated.name,
      '../' + branding.name] | 
|  814     searchres.referenced_projects += ['../' + static.name, '../' + generated.nam
     e, '../' + branding.name] |  821     searchres.referenced_projects += ['../' + static.name, '../' + generated.nam
     e, '../' + branding.name] | 
|  815  |  822  | 
|  816     resources.included_projects += ['../' + searchres.name] |  823     resources.included_projects += ['../' + searchres.name] | 
|  817     resources.referenced_projects += ['../' + searchres.name] |  824     resources.referenced_projects += ['../' + searchres.name] | 
|  818  |  825  | 
|  819     # 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. | 
|  820     main.add_classpathentry('search', TOPSRCDIR + '/mobile/android/search/java',
      dstdir='search') |  827     main.add_classpathentry('search', TOPSRCDIR + '/mobile/android/search/java',
      dstdir='search') | 
| OLD | NEW |