OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'includes': [ | 6 'includes': [ |
7 'app_shell.gypi', | 7 'app_shell.gypi', |
8 ], | 8 ], |
9 'variables': { | 9 'variables': { |
10 # Product name is used for Mac bundle. | 10 # Product name is used for Mac bundle. |
11 'app_shell_product_name': 'App Shell', | 11 'app_shell_product_name': 'App Shell', |
12 # The version is high enough to be supported by Omaha (at least 31) | 12 # The version is high enough to be supported by Omaha (at least 31) |
13 # but fake enough to be obviously not a Chrome release. | 13 # but fake enough to be obviously not a Chrome release. |
14 'app_shell_version': '38.1234.5678.9', | 14 'app_shell_version': '38.1234.5678.9', |
15 'chromium_code': 1, | 15 'chromium_code': 1, |
16 }, | 16 }, |
17 'targets': [ | 17 'targets': [ |
18 { | 18 { |
19 # GN version: //extensions/shell:app_shell_lib | 19 # GN version: //extensions/shell:app_shell_lib |
20 'target_name': 'app_shell_lib', | 20 'target_name': 'app_shell_lib', |
21 'type': 'static_library', | 21 'type': 'static_library', |
22 'dependencies': [ | 22 'dependencies': [ |
23 'app_shell_version_header', | 23 'app_shell_version_header', |
24 '<(DEPTH)/base/base.gyp:base', | 24 '<(DEPTH)/base/base.gyp:base', |
25 '<(DEPTH)/base/base.gyp:base_prefs', | |
26 '<(DEPTH)/components/components.gyp:devtools_discovery', | 25 '<(DEPTH)/components/components.gyp:devtools_discovery', |
27 '<(DEPTH)/components/components.gyp:devtools_http_handler', | 26 '<(DEPTH)/components/components.gyp:devtools_http_handler', |
28 '<(DEPTH)/components/components.gyp:pref_registry', | 27 '<(DEPTH)/components/components.gyp:pref_registry', |
29 '<(DEPTH)/components/components.gyp:update_client', | 28 '<(DEPTH)/components/components.gyp:update_client', |
30 '<(DEPTH)/components/components.gyp:user_prefs', | 29 '<(DEPTH)/components/components.gyp:user_prefs', |
31 '<(DEPTH)/components/components.gyp:web_cache_renderer', | 30 '<(DEPTH)/components/components.gyp:web_cache_renderer', |
| 31 '<(DEPTH)/components/prefs/prefs.gyp:prefs', |
32 '<(DEPTH)/content/content.gyp:content', | 32 '<(DEPTH)/content/content.gyp:content', |
33 '<(DEPTH)/content/content.gyp:content_browser', | 33 '<(DEPTH)/content/content.gyp:content_browser', |
34 '<(DEPTH)/content/content.gyp:content_gpu', | 34 '<(DEPTH)/content/content.gyp:content_gpu', |
35 '<(DEPTH)/content/content.gyp:content_ppapi_plugin', | 35 '<(DEPTH)/content/content.gyp:content_ppapi_plugin', |
36 '<(DEPTH)/content/content_shell_and_tests.gyp:content_shell_lib', | 36 '<(DEPTH)/content/content_shell_and_tests.gyp:content_shell_lib', |
37 '<(DEPTH)/device/core/core.gyp:device_core', | 37 '<(DEPTH)/device/core/core.gyp:device_core', |
38 '<(DEPTH)/device/hid/hid.gyp:device_hid', | 38 '<(DEPTH)/device/hid/hid.gyp:device_hid', |
39 '<(DEPTH)/extensions/browser/api/api_registration.gyp:extensions_api_reg
istration', | 39 '<(DEPTH)/extensions/browser/api/api_registration.gyp:extensions_api_reg
istration', |
40 '<(DEPTH)/extensions/common/api/api.gyp:extensions_api', | 40 '<(DEPTH)/extensions/common/api/api.gyp:extensions_api', |
41 '<(DEPTH)/extensions/extensions.gyp:extensions_browser', | 41 '<(DEPTH)/extensions/extensions.gyp:extensions_browser', |
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
401 '../../build/isolate.gypi', | 401 '../../build/isolate.gypi', |
402 ], | 402 ], |
403 'sources': [ | 403 'sources': [ |
404 'app_shell_unittests.isolate', | 404 'app_shell_unittests.isolate', |
405 ], | 405 ], |
406 }, | 406 }, |
407 ], | 407 ], |
408 }], | 408 }], |
409 ], | 409 ], |
410 } | 410 } |
OLD | NEW |