| 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 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 'debugger', | 38 'debugger', |
| 39 'plugin', | 39 'plugin', |
| 40 'renderer', | 40 'renderer', |
| 41 'utility', | 41 'utility', |
| 42 '../content/content.gyp:content_gpu', | 42 '../content/content.gyp:content_gpu', |
| 43 '../content/content.gyp:content_ppapi_plugin', | 43 '../content/content.gyp:content_ppapi_plugin', |
| 44 '../content/content.gyp:content_worker', | 44 '../content/content.gyp:content_worker', |
| 45 '../printing/printing.gyp:printing', | 45 '../printing/printing.gyp:printing', |
| 46 '../third_party/WebKit/Source/devtools/devtools.gyp:devtools_frontend_
resources', | 46 '../third_party/WebKit/Source/devtools/devtools.gyp:devtools_frontend_
resources', |
| 47 ], | 47 ], |
| 48 'conditions': [ |
| 49 ['enable_ipc_fuzzer==1', { |
| 50 'chromium_child_dependencies': [ |
| 51 'ipc_fuzzer', |
| 52 ], |
| 53 }], |
| 54 ], |
| 48 }], | 55 }], |
| 49 ['OS=="win"', { | 56 ['OS=="win"', { |
| 50 'nacl_defines': [ | 57 'nacl_defines': [ |
| 51 'NACL_WINDOWS=1', | 58 'NACL_WINDOWS=1', |
| 52 'NACL_LINUX=0', | 59 'NACL_LINUX=0', |
| 53 'NACL_OSX=0', | 60 'NACL_OSX=0', |
| 54 ], | 61 ], |
| 55 'platform_locale_settings_grd': | 62 'platform_locale_settings_grd': |
| 56 'app/resources/locale_settings_win.grd', | 63 'app/resources/locale_settings_win.grd', |
| 57 },], | 64 },], |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 'conditions': [ | 168 'conditions': [ |
| 162 ['OS!="ios"', { | 169 ['OS!="ios"', { |
| 163 'includes': [ | 170 'includes': [ |
| 164 'app/policy/policy_templates.gypi', | 171 'app/policy/policy_templates.gypi', |
| 165 'chrome_browser_extensions.gypi', | 172 'chrome_browser_extensions.gypi', |
| 166 'chrome_dll.gypi', | 173 'chrome_dll.gypi', |
| 167 'chrome_exe.gypi', | 174 'chrome_exe.gypi', |
| 168 'chrome_installer.gypi', | 175 'chrome_installer.gypi', |
| 169 'chrome_renderer.gypi', | 176 'chrome_renderer.gypi', |
| 170 'chrome_tests.gypi', | 177 'chrome_tests.gypi', |
| 178 'ipc_fuzzer.gypi', |
| 171 'nacl.gypi', | 179 'nacl.gypi', |
| 172 '../apps/apps.gypi', | 180 '../apps/apps.gypi', |
| 173 ], | 181 ], |
| 174 'targets': [ | 182 'targets': [ |
| 175 { | 183 { |
| 176 'target_name': 'default_extensions', | 184 'target_name': 'default_extensions', |
| 177 'type': 'none', | 185 'type': 'none', |
| 178 'conditions': [ | 186 'conditions': [ |
| 179 ['OS=="win"', { | 187 ['OS=="win"', { |
| 180 'copies': [ | 188 'copies': [ |
| (...skipping 1000 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1181 ], # 'targets' | 1189 ], # 'targets' |
| 1182 'includes': [ | 1190 'includes': [ |
| 1183 'chrome_android.gypi', | 1191 'chrome_android.gypi', |
| 1184 ]}, # 'includes' | 1192 ]}, # 'includes' |
| 1185 ], # OS=="android" | 1193 ], # OS=="android" |
| 1186 ['configuration_policy==1 and OS!="android"', { | 1194 ['configuration_policy==1 and OS!="android"', { |
| 1187 'includes': [ 'policy.gypi', ], | 1195 'includes': [ 'policy.gypi', ], |
| 1188 }], | 1196 }], |
| 1189 ], # 'conditions' | 1197 ], # 'conditions' |
| 1190 } | 1198 } |
| OLD | NEW |