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

Side by Side Diff: extensions/extensions.gyp

Issue 142223002: Support -Goutput_dir=blahblah in GN-GYP hybrid mode (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: prefer command line over env if both are specified Created 6 years, 11 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
« no previous file with comments | « content/content_browser.gypi ('k') | gpu/command_buffer_service.gypi » ('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 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 {
11 'target_name': 'extensions_common', 11 'target_name': 'extensions_common',
12 'type': 'static_library', 12 'type': 'static_library',
13 'dependencies': [ 13 'dependencies': [
14 '../<(gyp_output_dir)/gn_gyp/third_party/re2/re2.gyp:re2',
14 # TODO(benwells): figure out what to do with the api target and 15 # TODO(benwells): figure out what to do with the api target and
15 # api resources compiled into the chrome resource bundle. 16 # api resources compiled into the chrome resource bundle.
16 # http://crbug.com/162530 17 # http://crbug.com/162530
17 '../chrome/chrome_resources.gyp:chrome_resources', 18 '../chrome/chrome_resources.gyp:chrome_resources',
18 # TODO(jamescook|derat): Pull strings into extensions module. 19 # TODO(jamescook|derat): Pull strings into extensions module.
19 '../chrome/chrome_resources.gyp:chrome_strings', 20 '../chrome/chrome_resources.gyp:chrome_strings',
20 '../chrome/common/extensions/api/api.gyp:api', 21 '../chrome/common/extensions/api/api.gyp:api',
21 '../components/components.gyp:url_matcher', 22 '../components/components.gyp:url_matcher',
22 '../content/content.gyp:content_common', 23 '../content/content.gyp:content_common',
23 '../out/gn_gyp/third_party/re2/re2.gyp:re2',
24 ], 24 ],
25 'include_dirs': [ 25 'include_dirs': [
26 '..', 26 '..',
27 '<(INTERMEDIATE_DIR)', 27 '<(INTERMEDIATE_DIR)',
28 ], 28 ],
29 'sources': [ 29 'sources': [
30 'common/common_manifest_handlers.cc', 30 'common/common_manifest_handlers.cc',
31 'common/common_manifest_handlers.h', 31 'common/common_manifest_handlers.h',
32 'common/crx_file.cc', 32 'common/crx_file.cc',
33 'common/crx_file.h', 33 'common/crx_file.h',
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 'common/test_util.cc', 234 'common/test_util.cc',
235 'common/test_util.h', 235 'common/test_util.h',
236 'common/value_builder.cc', 236 'common/value_builder.cc',
237 'common/value_builder.h', 237 'common/value_builder.h',
238 ], 238 ],
239 # Disable c4267 warnings until we fix size_t to int truncations. 239 # Disable c4267 warnings until we fix size_t to int truncations.
240 'msvs_disabled_warnings': [ 4267, ], 240 'msvs_disabled_warnings': [ 4267, ],
241 }, 241 },
242 ] 242 ]
243 } 243 }
OLDNEW
« no previous file with comments | « content/content_browser.gypi ('k') | gpu/command_buffer_service.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698