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

Side by Side Diff: extensions/extensions.gyp

Issue 182313002: Include sync.pb.h in sync_data.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 10 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 { 148 {
149 'target_name': 'extensions_browser', 149 'target_name': 'extensions_browser',
150 'type': 'static_library', 150 'type': 'static_library',
151 'dependencies': [ 151 'dependencies': [
152 'extensions_common', 152 'extensions_common',
153 # TODO(jamescook|derat): Pull strings into extensions module. 153 # TODO(jamescook|derat): Pull strings into extensions module.
154 '../chrome/chrome_resources.gyp:chrome_strings', 154 '../chrome/chrome_resources.gyp:chrome_strings',
155 '../chrome/common/extensions/api/api.gyp:api', 155 '../chrome/common/extensions/api/api.gyp:api',
156 '../content/content.gyp:content_browser', 156 '../content/content.gyp:content_browser',
157 '../skia/skia.gyp:skia', 157 '../skia/skia.gyp:skia',
158 # Declaring a dependency on sync because extensions_browser depends on
159 # browser_extensions, which depends on sync. We cannot simply declare a
160 # dependency on browser_extensions because that would create a cycle
161 # (browser_extension already depends on extensions_browser).
Nico 2014/03/07 19:13:00 Same question as above.
maniscalco 2014/03/07 23:44:37 No longer needed!
162 '../sync/sync.gyp:sync',
158 ], 163 ],
159 'include_dirs': [ 164 'include_dirs': [
160 '..', 165 '..',
161 '<(INTERMEDIATE_DIR)', 166 '<(INTERMEDIATE_DIR)',
162 # Needed to access generated API headers. 167 # Needed to access generated API headers.
163 '<(SHARED_INTERMEDIATE_DIR)', 168 '<(SHARED_INTERMEDIATE_DIR)',
164 # Needed for grit. 169 # Needed for grit.
165 '<(SHARED_INTERMEDIATE_DIR)/chrome', 170 '<(SHARED_INTERMEDIATE_DIR)/chrome',
166 ], 171 ],
167 'sources': [ 172 'sources': [
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 'common/test_util.cc', 265 'common/test_util.cc',
261 'common/test_util.h', 266 'common/test_util.h',
262 'common/value_builder.cc', 267 'common/value_builder.cc',
263 'common/value_builder.h', 268 'common/value_builder.h',
264 ], 269 ],
265 # Disable c4267 warnings until we fix size_t to int truncations. 270 # Disable c4267 warnings until we fix size_t to int truncations.
266 'msvs_disabled_warnings': [ 4267, ], 271 'msvs_disabled_warnings': [ 4267, ],
267 }, 272 },
268 ] 273 ]
269 } 274 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698