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

Side by Side Diff: url/url.gyp

Issue 89863002: Move the logic for getting icu data out of icu_util (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: set the flag to 0 by default Created 7 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 | Annotate | Revision Log
« base/i18n/icu_util.cc ('K') | « build/common.gypi ('k') | no next file » | 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 # Note, this target_name cannot be 'url', because that will generate 11 # Note, this target_name cannot be 'url', because that will generate
12 # 'url.dll' for a Windows component build, and that will confuse Windows, 12 # 'url.dll' for a Windows component build, and that will confuse Windows,
13 # which has a system DLL with the same name. 13 # which has a system DLL with the same name.
14 'target_name': 'url_lib', 14 'target_name': 'url_lib',
15 'type': '<(component)', 15 'type': '<(component)',
16 'dependencies': [ 16 'dependencies': [
17 '../base/base.gyp:base', 17 '../base/base.gyp:base',
18 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 18 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
19 '../third_party/icu/icu.gyp:icudata',
20 '../third_party/icu/icu.gyp:icui18n', 19 '../third_party/icu/icu.gyp:icui18n',
21 '../third_party/icu/icu.gyp:icuuc', 20 '../third_party/icu/icu.gyp:icuuc',
22 ], 21 ],
23 'sources': [ 22 'sources': [
24 'gurl.cc', 23 'gurl.cc',
25 'gurl.h', 24 'gurl.h',
26 'third_party/mozilla/url_parse.cc', 25 'third_party/mozilla/url_parse.cc',
27 'third_party/mozilla/url_parse.h', 26 'third_party/mozilla/url_parse.h',
28 'url_canon.h', 27 'url_canon.h',
29 'url_canon_etc.cc', 28 'url_canon_etc.cc',
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 ], 90 ],
92 ], 91 ],
93 } 92 }
94 ], 93 ],
95 ], 94 ],
96 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 95 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
97 'msvs_disabled_warnings': [4267, ], 96 'msvs_disabled_warnings': [4267, ],
98 }, 97 },
99 ], 98 ],
100 } 99 }
OLDNEW
« base/i18n/icu_util.cc ('K') | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698