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

Side by Side Diff: components/url_matcher.gypi

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 | « components/plugins.gypi ('k') | content/content_browser.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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'url_matcher', 8 'target_name': 'url_matcher',
9 'type': '<(component)', 9 'type': '<(component)',
10 'dependencies': [ 10 'dependencies': [
11 '../<(gyp_output_dir)/gn_gyp/third_party/re2/re2.gyp:re2',
11 '../base/base.gyp:base', 12 '../base/base.gyp:base',
12 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 13 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
13 '../out/gn_gyp/third_party/re2/re2.gyp:re2',
14 '../url/url.gyp:url_lib', 14 '../url/url.gyp:url_lib',
15 ], 15 ],
16 'include_dirs': [ 16 'include_dirs': [
17 '..', 17 '..',
18 ], 18 ],
19 'defines': [ 19 'defines': [
20 'URL_MATCHER_IMPLEMENTATION', 20 'URL_MATCHER_IMPLEMENTATION',
21 ], 21 ],
22 'sources': [ 22 'sources': [
23 'url_matcher/regex_set_matcher.cc', 23 'url_matcher/regex_set_matcher.cc',
(...skipping 10 matching lines...) Expand all
34 'url_matcher/url_matcher_factory.cc', 34 'url_matcher/url_matcher_factory.cc',
35 'url_matcher/url_matcher_factory.h', 35 'url_matcher/url_matcher_factory.h',
36 'url_matcher/url_matcher_helpers.cc', 36 'url_matcher/url_matcher_helpers.cc',
37 'url_matcher/url_matcher_helpers.h', 37 'url_matcher/url_matcher_helpers.h',
38 ], 38 ],
39 # Disable c4267 warnings until we fix size_t to int truncations. 39 # Disable c4267 warnings until we fix size_t to int truncations.
40 'msvs_disabled_warnings': [ 4267, ], 40 'msvs_disabled_warnings': [ 4267, ],
41 }, 41 },
42 ], 42 ],
43 } 43 }
OLDNEW
« no previous file with comments | « components/plugins.gypi ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698