| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 { | 6 { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'browser', | 9 'target_name': 'browser', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 'variations_seed_proto', | 33 'variations_seed_proto', |
| 34 '../build/temp_gyp/googleurl.gyp:googleurl', | 34 '../build/temp_gyp/googleurl.gyp:googleurl', |
| 35 '../content/content.gyp:content_browser', | 35 '../content/content.gyp:content_browser', |
| 36 '../content/content.gyp:content_common', | 36 '../content/content.gyp:content_common', |
| 37 '../crypto/crypto.gyp:crypto', | 37 '../crypto/crypto.gyp:crypto', |
| 38 '../media/media.gyp:media', | 38 '../media/media.gyp:media', |
| 39 '../net/net.gyp:net', | 39 '../net/net.gyp:net', |
| 40 '../ppapi/ppapi_internal.gyp:ppapi_proxy', # For PpapiMsg_LoadPlugin | 40 '../ppapi/ppapi_internal.gyp:ppapi_proxy', # For PpapiMsg_LoadPlugin |
| 41 '../printing/printing.gyp:printing', | 41 '../printing/printing.gyp:printing', |
| 42 '../skia/skia.gyp:skia', | 42 '../skia/skia.gyp:skia', |
| 43 '../sync/protocol/sync_proto.gyp:sync_proto', | 43 '../sync/sync.gyp:sync', |
| 44 # TODO(akalin): Depend only on syncapi_service from sync. | |
| 45 '../sync/sync.gyp:syncapi_core', | |
| 46 '../sync/sync.gyp:syncapi_service', | |
| 47 '../sync/sync.gyp:sync_notifier', | |
| 48 '../third_party/adobe/flash/flash_player.gyp:flapper_version_h', | 44 '../third_party/adobe/flash/flash_player.gyp:flapper_version_h', |
| 49 '../third_party/bzip2/bzip2.gyp:bzip2', | 45 '../third_party/bzip2/bzip2.gyp:bzip2', |
| 50 '../third_party/cld/cld.gyp:cld', | 46 '../third_party/cld/cld.gyp:cld', |
| 51 '../third_party/expat/expat.gyp:expat', | 47 '../third_party/expat/expat.gyp:expat', |
| 52 '../third_party/hunspell/hunspell.gyp:hunspell', | 48 '../third_party/hunspell/hunspell.gyp:hunspell', |
| 53 '../third_party/icu/icu.gyp:icui18n', | 49 '../third_party/icu/icu.gyp:icui18n', |
| 54 '../third_party/icu/icu.gyp:icuuc', | 50 '../third_party/icu/icu.gyp:icuuc', |
| 55 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 51 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
| 56 '../third_party/libjingle/libjingle.gyp:libjingle', | 52 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 57 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', | 53 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 82 ], | 78 ], |
| 83 'defines': [ | 79 'defines': [ |
| 84 '<@(nacl_defines)', | 80 '<@(nacl_defines)', |
| 85 ], | 81 ], |
| 86 'direct_dependent_settings': { | 82 'direct_dependent_settings': { |
| 87 'defines': [ | 83 'defines': [ |
| 88 '<@(nacl_defines)', | 84 '<@(nacl_defines)', |
| 89 ], | 85 ], |
| 90 }, | 86 }, |
| 91 'export_dependent_settings': [ | 87 'export_dependent_settings': [ |
| 92 '../sync/sync.gyp:sync_notifier', | 88 '../sync/sync.gyp:sync', |
| 93 ], | 89 ], |
| 94 'sources': [ | 90 'sources': [ |
| 95 # All .cc, .h, .m, and .mm files under browser except for: | 91 # All .cc, .h, .m, and .mm files under browser except for: |
| 96 # * tests and mocks. | 92 # * tests and mocks. |
| 97 # * code below browser/extensions | 93 # * code below browser/extensions |
| 98 'browser/about_flags.cc', | 94 'browser/about_flags.cc', |
| 99 'browser/about_flags.h', | 95 'browser/about_flags.h', |
| 100 'browser/about_flags_android.cc', | 96 'browser/about_flags_android.cc', |
| 101 'browser/accessibility/accessibility_extension_api_constants.cc', | 97 'browser/accessibility/accessibility_extension_api_constants.cc', |
| 102 'browser/accessibility/accessibility_extension_api_constants.h', | 98 'browser/accessibility/accessibility_extension_api_constants.h', |
| (...skipping 5359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5462 'variables': { | 5458 'variables': { |
| 5463 'jni_gen_dir': 'chrome', | 5459 'jni_gen_dir': 'chrome', |
| 5464 }, | 5460 }, |
| 5465 'includes': [ '../build/jni_generator.gypi' ], | 5461 'includes': [ '../build/jni_generator.gypi' ], |
| 5466 }, | 5462 }, |
| 5467 ], | 5463 ], |
| 5468 }, | 5464 }, |
| 5469 ], | 5465 ], |
| 5470 ], | 5466 ], |
| 5471 } | 5467 } |
| OLD | NEW |