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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 8417017: Separate some generated files into their own targets (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 1 month 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
« no previous file with comments | « no previous file | chrome/chrome_common.gypi » ('j') | webkit/glue/webkit_glue.gypi » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'browser', 8 'target_name': 'browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
11 'app/policy/cloud_policy_codegen.gyp:policy', 11 'app/policy/cloud_policy_codegen.gyp:policy',
12 'autofill_regexes',
12 'browser/sync/protocol/sync_proto.gyp:sync_proto', 13 'browser/sync/protocol/sync_proto.gyp:sync_proto',
13 'cert_logger_proto', 14 'cert_logger_proto',
14 'chrome_extra_resources', 15 'chrome_extra_resources',
15 'chrome_resources', 16 'chrome_resources',
16 'chrome_strings', 17 'chrome_strings',
17 'common', 18 'common',
18 'common_net', 19 'common_net',
19 'debugger', 20 'debugger',
20 'in_memory_url_index_cache_proto', 21 'in_memory_url_index_cache_proto',
21 'installer_util', 22 'installer_util',
(...skipping 3981 matching lines...) Expand 10 before | Expand all | Expand 10 after
4003 4004
4004 # These files are generated by GRIT. 4005 # These files are generated by GRIT.
4005 '<(grit_out_dir)/grit/component_extension_resources_map.cc', 4006 '<(grit_out_dir)/grit/component_extension_resources_map.cc',
4006 '<(grit_out_dir)/grit/devtools_frontend_resources_map.cc', 4007 '<(grit_out_dir)/grit/devtools_frontend_resources_map.cc',
4007 '<(grit_out_dir)/grit/devtools_resources_map.cc', 4008 '<(grit_out_dir)/grit/devtools_resources_map.cc',
4008 '<(grit_out_dir)/grit/shared_resources_map.cc', 4009 '<(grit_out_dir)/grit/shared_resources_map.cc',
4009 '<(grit_out_dir)/grit/theme_resources_map.cc', 4010 '<(grit_out_dir)/grit/theme_resources_map.cc',
4010 '<(grit_out_dir)/grit/theme_resources_standard_map.cc', 4011 '<(grit_out_dir)/grit/theme_resources_standard_map.cc',
4011 4012
4012 # This file is generated by the autofill_regexes action. 4013 # This file is generated by the autofill_regexes action.
4013 '<(INTERMEDIATE_DIR)/autofill_regex_constants.cc', 4014 '<(SHARED_INTERMEDIATE_DIR)/autofill_regex_constants.cc',
Ryan Sleevi 2011/11/03 07:55:18 drive by: It's considered bad form to drop files d
4014 ], 4015 ],
4015 'actions': [{
4016 'action_name': 'autofill_regexes',
4017 'inputs': [
4018 '<(DEPTH)/build/escape_unicode.py',
4019 'browser/autofill/autofill_regex_constants.cc.utf8',
4020 ],
4021 'outputs': [
4022 '<(INTERMEDIATE_DIR)/autofill_regex_constants.cc',
4023 ],
4024 'action': ['python', '<(DEPTH)/build/escape_unicode.py',
4025 '-o', '<(INTERMEDIATE_DIR)',
4026 'browser/autofill/autofill_regex_constants.cc.utf8'],
4027 }],
4028 'conditions': [ 4016 'conditions': [
4029 ['debug_devtools==1', { 4017 ['debug_devtools==1', {
4030 'defines': [ 4018 'defines': [
4031 'DEBUG_DEVTOOLS=1', 4019 'DEBUG_DEVTOOLS=1',
4032 ], 4020 ],
4033 }], 4021 }],
4034 ['configuration_policy==0', { 4022 ['configuration_policy==0', {
4035 'sources!': [ 4023 'sources!': [
4036 'browser/ui/webui/options/options_managed_banner_handler.cc', 4024 'browser/ui/webui/options/options_managed_banner_handler.cc',
4037 ], 4025 ],
(...skipping 1157 matching lines...) Expand 10 before | Expand all | Expand 10 after
5195 ['include', '^browser/ui/views/file_manager_dialog.h'], 5183 ['include', '^browser/ui/views/file_manager_dialog.h'],
5196 ]}, { 5184 ]}, {
5197 'sources/': [ 5185 'sources/': [
5198 ['exclude', '^browser/ui/views/file_manager_dialog.cc'], 5186 ['exclude', '^browser/ui/views/file_manager_dialog.cc'],
5199 ['exclude', '^browser/ui/views/file_manager_dialog.h'], 5187 ['exclude', '^browser/ui/views/file_manager_dialog.h'],
5200 ]} 5188 ]}
5201 ], 5189 ],
5202 ], 5190 ],
5203 }, 5191 },
5204 { 5192 {
5193 'target_name': 'autofill_regexes',
5194 'type': 'none',
5195 'actions': [{
5196 'action_name': 'autofill_regexes',
5197 'inputs': [
5198 '<(DEPTH)/build/escape_unicode.py',
5199 'browser/autofill/autofill_regex_constants.cc.utf8',
5200 ],
5201 'outputs': [
5202 '<(SHARED_INTERMEDIATE_DIR)/autofill_regex_constants.cc',
5203 ],
5204 'action': ['python', '<(DEPTH)/build/escape_unicode.py',
5205 '-o', '<(SHARED_INTERMEDIATE_DIR)',
5206 'browser/autofill/autofill_regex_constants.cc.utf8'],
5207 }],
5208 },
5209 {
5205 # Protobuf compiler / generator for the fraudulent certificate reporting 5210 # Protobuf compiler / generator for the fraudulent certificate reporting
5206 # protocol buffer. 5211 # protocol buffer.
5207 'target_name': 'cert_logger_proto', 5212 'target_name': 'cert_logger_proto',
5208 'type': 'static_library', 5213 'type': 'static_library',
5209 'sources': [ 'browser/net/cert_logger.proto', ], 5214 'sources': [ 'browser/net/cert_logger.proto', ],
5210 'variables': { 5215 'variables': {
5211 'proto_in_dir': 'browser/net', 5216 'proto_in_dir': 'browser/net',
5212 'proto_out_dir': 'chrome/browser/net', 5217 'proto_out_dir': 'chrome/browser/net',
5213 }, 5218 },
5214 'includes': [ '../build/protoc.gypi', ], 5219 'includes': [ '../build/protoc.gypi', ],
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
5251 'type': 'static_library', 5256 'type': 'static_library',
5252 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ], 5257 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ],
5253 'variables': { 5258 'variables': {
5254 'proto_in_dir': 'browser/history', 5259 'proto_in_dir': 'browser/history',
5255 'proto_out_dir': 'chrome/browser/history', 5260 'proto_out_dir': 'chrome/browser/history',
5256 }, 5261 },
5257 'includes': [ '../build/protoc.gypi' ] 5262 'includes': [ '../build/protoc.gypi' ]
5258 }, 5263 },
5259 ], 5264 ],
5260 } 5265 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_common.gypi » ('j') | webkit/glue/webkit_glue.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698