Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(245)

Side by Side Diff: chrome/chrome_browser_chromeos.gypi

Issue 489153003: Split bundle generation steps so that API registration is generated in browser, not common. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: extra targets Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 ], 109 ],
109 'defines': [ 110 'defines': [
110 '<@(nacl_defines)', 111 '<@(nacl_defines)',
111 ], 112 ],
112 'direct_dependent_settings': { 113 'direct_dependent_settings': {
113 'defines': [ 114 'defines': [
114 '<@(nacl_defines)', 115 '<@(nacl_defines)',
115 ], 116 ],
116 }, 117 },
117 'export_dependent_settings': [ 118 'export_dependent_settings': [
119 'browser/extensions/api/api_registration.gyp:chrome_api_registration',
118 'common/extensions/api/api.gyp:chrome_api', 120 'common/extensions/api/api.gyp:chrome_api',
119 '../sync/sync.gyp:sync', 121 '../sync/sync.gyp:sync',
120 ], 122 ],
121 'include_dirs': [ 123 'include_dirs': [
122 # breakpad_linux.cc uses generated file_version_info_linux.h. 124 # breakpad_linux.cc uses generated file_version_info_linux.h.
123 '<(SHARED_INTERMEDIATE_DIR)', 125 '<(SHARED_INTERMEDIATE_DIR)',
124 '../breakpad/src', 126 '../breakpad/src',
125 ], 127 ],
126 'sources': [ 128 'sources': [
127 # All .cc, .h, .m, and .mm files under browser/chromeos, except for test s 129 # All .cc, .h, .m, and .mm files under browser/chromeos, except for test s
(...skipping 1064 matching lines...) Expand 10 before | Expand all | Expand 10 after
1192 'browser/chromeos/attestation/attestation_signed_data.proto', 1194 'browser/chromeos/attestation/attestation_signed_data.proto',
1193 ], 1195 ],
1194 'variables': { 1196 'variables': {
1195 'proto_in_dir': 'browser/chromeos/attestation', 1197 'proto_in_dir': 'browser/chromeos/attestation',
1196 'proto_out_dir': 'chrome/browser/chromeos/attestation', 1198 'proto_out_dir': 'chrome/browser/chromeos/attestation',
1197 }, 1199 },
1198 'includes': [ '../build/protoc.gypi' ] 1200 'includes': [ '../build/protoc.gypi' ]
1199 }, 1201 },
1200 ], 1202 ],
1201 } 1203 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698