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_chromeos', | 9 'target_name': 'browser_chromeos', |
10 'type': 'static_library', | 10 'type': 'static_library', |
11 'variables': { | 11 'variables': { |
12 'conditions': [ | 12 'conditions': [ |
13 ['sysroot!=""', { | 13 ['sysroot!=""', { |
14 'pkg-config': '../build/linux/pkg-config-wrapper "<(sysroot)" "<(tar
get_arch)" "<(system_libdir)"', | 14 'pkg-config': '../build/linux/pkg-config-wrapper "<(sysroot)" "<(tar
get_arch)" "<(system_libdir)"', |
15 }, { | 15 }, { |
16 'pkg-config': 'pkg-config' | 16 'pkg-config': 'pkg-config' |
17 }], | 17 }], |
18 ], | 18 ], |
19 # Override to dynamically link the cras (ChromeOS audio) library. | 19 # Override to dynamically link the cras (ChromeOS audio) library. |
20 'use_cras%': 0, | 20 'use_cras%': 0, |
21 'enable_wexit_time_destructors': 1, | 21 'enable_wexit_time_destructors': 1, |
22 }, | 22 }, |
23 'dependencies': [ | 23 'dependencies': [ |
24 # TODO(tbarzic): Cleanup this list. | 24 # TODO(tbarzic): Cleanup this list. |
25 'attestation_proto', | 25 'attestation_proto', |
| 26 'browser/extensions/api/api_registration.gyp:chrome_api_registration', |
26 'browser/performance_monitor/performance_monitor.gyp:performance_monitor
', | 27 'browser/performance_monitor/performance_monitor.gyp:performance_monitor
', |
27 'browser_extensions', | 28 'browser_extensions', |
28 'cert_logger_proto', | 29 'cert_logger_proto', |
29 'chrome_resources.gyp:chrome_extra_resources', | 30 'chrome_resources.gyp:chrome_extra_resources', |
30 'chrome_resources.gyp:chrome_resources', | 31 'chrome_resources.gyp:chrome_resources', |
31 'chrome_resources.gyp:platform_locale_settings', | 32 'chrome_resources.gyp:platform_locale_settings', |
32 'chrome_resources.gyp:theme_resources', | 33 'chrome_resources.gyp:theme_resources', |
33 'common', | 34 'common', |
34 'common/extensions/api/api.gyp:chrome_api', | 35 'common/extensions/api/api.gyp:chrome_api', |
35 'common_net', | 36 'common_net', |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 ], | 110 ], |
110 'defines': [ | 111 'defines': [ |
111 '<@(nacl_defines)', | 112 '<@(nacl_defines)', |
112 ], | 113 ], |
113 'direct_dependent_settings': { | 114 'direct_dependent_settings': { |
114 'defines': [ | 115 'defines': [ |
115 '<@(nacl_defines)', | 116 '<@(nacl_defines)', |
116 ], | 117 ], |
117 }, | 118 }, |
118 'export_dependent_settings': [ | 119 'export_dependent_settings': [ |
| 120 'browser/extensions/api/api_registration.gyp:chrome_api_registration', |
119 'common/extensions/api/api.gyp:chrome_api', | 121 'common/extensions/api/api.gyp:chrome_api', |
120 '../sync/sync.gyp:sync', | 122 '../sync/sync.gyp:sync', |
121 ], | 123 ], |
122 'include_dirs': [ | 124 'include_dirs': [ |
123 # breakpad_linux.cc uses generated file_version_info_linux.h. | 125 # breakpad_linux.cc uses generated file_version_info_linux.h. |
124 '<(SHARED_INTERMEDIATE_DIR)', | 126 '<(SHARED_INTERMEDIATE_DIR)', |
125 '../breakpad/src', | 127 '../breakpad/src', |
126 ], | 128 ], |
127 'sources': [ | 129 'sources': [ |
128 # All .cc, .h, .m, and .mm files under browser/chromeos, except for test
s | 130 # All .cc, .h, .m, and .mm files under browser/chromeos, except for test
s |
(...skipping 1065 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1194 'browser/chromeos/attestation/attestation_signed_data.proto', | 1196 'browser/chromeos/attestation/attestation_signed_data.proto', |
1195 ], | 1197 ], |
1196 'variables': { | 1198 'variables': { |
1197 'proto_in_dir': 'browser/chromeos/attestation', | 1199 'proto_in_dir': 'browser/chromeos/attestation', |
1198 'proto_out_dir': 'chrome/browser/chromeos/attestation', | 1200 'proto_out_dir': 'chrome/browser/chromeos/attestation', |
1199 }, | 1201 }, |
1200 'includes': [ '../build/protoc.gypi' ] | 1202 'includes': [ '../build/protoc.gypi' ] |
1201 }, | 1203 }, |
1202 ], | 1204 ], |
1203 } | 1205 } |
OLD | NEW |