| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 { | 4 { |
| 5 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 | 7 |
| 8 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
| 9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
| 10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
| 11 # Linux or Mac, and into chrome.dll on Windows. | 11 # Linux or Mac, and into chrome.dll on Windows. |
| 12 'chromium_dependencies': [ | 12 'chromium_dependencies': [ |
| 13 'common', | 13 'common', |
| 14 'browser', | 14 'browser', |
| 15 'debugger', | 15 'debugger', |
| 16 'plugin', | 16 'plugin', |
| 17 'renderer', | 17 'renderer', |
| 18 'utility', | 18 'utility', |
| 19 '../content/content.gyp:content_app', | 19 '../content/content.gyp:content_app', |
| 20 '../content/content.gyp:content_gpu', | 20 '../content/content.gyp:content_gpu', |
| 21 '../content/content.gyp:content_ppapi_plugin', | 21 '../content/content.gyp:content_ppapi_plugin', |
| 22 '../content/content.gyp:content_worker', | 22 '../content/content.gyp:content_worker', |
| 23 '../sync/sync.gyp:syncapi_core', | 23 '../sync/sync.gyp:sync_core', |
| 24 '../printing/printing.gyp:printing', | 24 '../printing/printing.gyp:printing', |
| 25 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:inspector_resourc
es', | 25 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:inspector_resourc
es', |
| 26 ], | 26 ], |
| 27 'allocator_target': '../base/allocator/allocator.gyp:allocator', | 27 'allocator_target': '../base/allocator/allocator.gyp:allocator', |
| 28 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', | 28 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', |
| 29 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', | 29 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', |
| 30 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], | 30 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], |
| 31 # TODO: remove this helper when we have loops in GYP | 31 # TODO: remove this helper when we have loops in GYP |
| 32 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py'], | 32 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py'], |
| 33 'conditions': [ | 33 'conditions': [ |
| (...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 }], | 361 }], |
| 362 ], | 362 ], |
| 363 }, | 363 }, |
| 364 { | 364 { |
| 365 'target_name': 'ipclist', | 365 'target_name': 'ipclist', |
| 366 'type': 'executable', | 366 'type': 'executable', |
| 367 'variables': { 'enable_wexit_time_destructors': 1, }, | 367 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 368 'dependencies': [ | 368 'dependencies': [ |
| 369 'test_support_common', | 369 'test_support_common', |
| 370 '../skia/skia.gyp:skia', | 370 '../skia/skia.gyp:skia', |
| 371 '../sync/sync.gyp:sync_core', |
| 371 ], | 372 ], |
| 372 'include_dirs': [ | 373 'include_dirs': [ |
| 373 '..', | 374 '..', |
| 374 ], | 375 ], |
| 375 'sources': [ | 376 'sources': [ |
| 376 'tools/ipclist/ipclist.cc', | 377 'tools/ipclist/ipclist.cc', |
| 377 ], | 378 ], |
| 378 }, | 379 }, |
| 379 ], | 380 ], |
| 380 'conditions': [ | 381 'conditions': [ |
| (...skipping 683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1064 '../build/java.gypi', | 1065 '../build/java.gypi', |
| 1065 ], | 1066 ], |
| 1066 }, | 1067 }, |
| 1067 ], # 'targets' | 1068 ], # 'targets' |
| 1068 'includes': [ | 1069 'includes': [ |
| 1069 'chrome_android.gypi', | 1070 'chrome_android.gypi', |
| 1070 ]}, # 'includes' | 1071 ]}, # 'includes' |
| 1071 ], # OS=="android" | 1072 ], # OS=="android" |
| 1072 ], # 'conditions' | 1073 ], # 'conditions' |
| 1073 } | 1074 } |
| OLD | NEW |