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

Side by Side Diff: chrome/common_constants.gyp

Issue 1475513006: New build flag system, convert Google Now flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add hard dependency flags Created 5 years 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
« no previous file with comments | « chrome/common/pref_names.cc ('k') | tools/grit/grit/util.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'common_constants_sources': [ 8 'common_constants_sources': [
9 'common/chrome_constants.cc', 9 'common/chrome_constants.cc',
10 'common/chrome_constants.h', 10 'common/chrome_constants.h',
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 '<@(_outputs)', 65 '<@(_outputs)',
66 ], 66 ],
67 'message': 'Generating version header file: <@(_outputs)', 67 'message': 'Generating version header file: <@(_outputs)',
68 }, 68 },
69 ], 69 ],
70 }, 70 },
71 { 71 {
72 # GN version: //chrome/common:constants 72 # GN version: //chrome/common:constants
73 'target_name': 'common_constants', 73 'target_name': 'common_constants',
74 'type': 'static_library', 74 'type': 'static_library',
75 'hard_dependency': 1, # Because of transitive dep on version_header.
75 'sources': [ 76 'sources': [
76 '<@(common_constants_sources)' 77 '<@(common_constants_sources)'
77 ], 78 ],
78 'include_dirs': [ 79 'include_dirs': [
79 '<(SHARED_INTERMEDIATE_DIR)', # Needed by chrome_paths.cc. 80 '<(SHARED_INTERMEDIATE_DIR)', # Needed by chrome_paths.cc.
80 ], 81 ],
81 'dependencies': [ 82 'dependencies': [
82 'version_header', 83 'version_header',
83 '../base/base.gyp:base', 84 '../base/base.gyp:base',
84 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 85 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 'configurations': { 130 'configurations': {
130 'Common_Base': { 131 'Common_Base': {
131 'msvs_target_platform': 'x64', 132 'msvs_target_platform': 'x64',
132 }, 133 },
133 }, 134 },
134 }, 135 },
135 ], 136 ],
136 }], 137 }],
137 ], 138 ],
138 } 139 }
OLDNEW
« no previous file with comments | « chrome/common/pref_names.cc ('k') | tools/grit/grit/util.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698