OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 '<(grit_out_dir)', | 241 '<(grit_out_dir)', |
242 ], | 242 ], |
243 }, | 243 }, |
244 'conditions': [ | 244 'conditions': [ |
245 ['OS=="win"', { | 245 ['OS=="win"', { |
246 'dependencies': ['../build/win/system.gyp:cygwin'], | 246 'dependencies': ['../build/win/system.gyp:cygwin'], |
247 }], | 247 }], |
248 ], | 248 ], |
249 }, | 249 }, |
250 { | 250 { |
| 251 'target_name': 'default_extensions', |
| 252 'type': 'none', |
| 253 'msvs_guid': 'DA9BAB64-91DC-419B-AFDE-6FF8C569E83A', |
| 254 'conditions': [ |
| 255 ['OS=="win"', { |
| 256 'copies': [ |
| 257 { |
| 258 'destination': '<(PRODUCT_DIR)/extensions', |
| 259 'files': [ |
| 260 'browser/extensions/default_extensions/external_extensions.json' |
| 261 ] |
| 262 } |
| 263 ], |
| 264 }], |
| 265 ], |
| 266 }, |
| 267 { |
251 'target_name': 'common', | 268 'target_name': 'common', |
252 'type': '<(library)', | 269 'type': '<(library)', |
253 'msvs_guid': '899F1280-3441-4D1F-BA04-CCD6208D9146', | 270 'msvs_guid': '899F1280-3441-4D1F-BA04-CCD6208D9146', |
254 'dependencies': [ | 271 'dependencies': [ |
255 'chrome_resources', | 272 'chrome_resources', |
256 'chrome_strings', | 273 'chrome_strings', |
257 'theme_resources', | 274 'theme_resources', |
258 '../app/app.gyp:app_base', | 275 '../app/app.gyp:app_base', |
259 '../base/base.gyp:base', | 276 '../base/base.gyp:base', |
260 '../base/base.gyp:base_gfx', | 277 '../base/base.gyp:base_gfx', |
(...skipping 4592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4853 # Use outputs of this action as inputs for the main target build. | 4870 # Use outputs of this action as inputs for the main target build. |
4854 # Seems as a misnomer but makes this happy on Linux (scons). | 4871 # Seems as a misnomer but makes this happy on Linux (scons). |
4855 'process_outputs_as_sources': 1, | 4872 'process_outputs_as_sources': 1, |
4856 }, | 4873 }, |
4857 ], # 'actions' | 4874 ], # 'actions' |
4858 }, | 4875 }, |
4859 ] | 4876 ] |
4860 }], | 4877 }], |
4861 ], # 'conditions' | 4878 ], # 'conditions' |
4862 } | 4879 } |
OLD | NEW |