OLD | NEW |
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 '../third_party/icu/icu.gyp:icudata', | 18 '../third_party/icu/icu.gyp:icudata', |
19 '../third_party/icu/icu.gyp:icui18n', | 19 '../third_party/icu/icu.gyp:icui18n', |
20 '../third_party/icu/icu.gyp:icuuc', | 20 '../third_party/icu/icu.gyp:icuuc', |
21 ], | 21 ], |
22 'sources': [ | 22 'sources': [ |
23 'gurl.cc', | 23 'gurl.cc', |
24 'gurl.h', | 24 'gurl.h', |
| 25 'third_party/mozilla/url_parse.cc', |
| 26 'third_party/mozilla/url_parse.h', |
25 'url_canon.h', | 27 'url_canon.h', |
26 'url_canon_etc.cc', | 28 'url_canon_etc.cc', |
27 'url_canon_filesystemurl.cc', | 29 'url_canon_filesystemurl.cc', |
28 'url_canon_fileurl.cc', | 30 'url_canon_fileurl.cc', |
29 'url_canon_host.cc', | 31 'url_canon_host.cc', |
30 'url_canon_icu.cc', | 32 'url_canon_icu.cc', |
31 'url_canon_icu.h', | 33 'url_canon_icu.h', |
32 'url_canon_internal.cc', | 34 'url_canon_internal.cc', |
33 'url_canon_internal.h', | 35 'url_canon_internal.h', |
34 'url_canon_internal_file.h', | 36 'url_canon_internal_file.h', |
35 'url_canon_ip.cc', | 37 'url_canon_ip.cc', |
36 'url_canon_ip.h', | 38 'url_canon_ip.h', |
37 'url_canon_mailtourl.cc', | 39 'url_canon_mailtourl.cc', |
38 'url_canon_path.cc', | 40 'url_canon_path.cc', |
39 'url_canon_pathurl.cc', | 41 'url_canon_pathurl.cc', |
40 'url_canon_query.cc', | 42 'url_canon_query.cc', |
41 'url_canon_relative.cc', | 43 'url_canon_relative.cc', |
42 'url_canon_stdstring.h', | 44 'url_canon_stdstring.h', |
43 'url_canon_stdurl.cc', | 45 'url_canon_stdurl.cc', |
44 'url_file.h', | 46 'url_file.h', |
45 'url_parse.cc', | |
46 'url_parse.h', | |
47 'url_parse_file.cc', | 47 'url_parse_file.cc', |
48 'url_parse_internal.h', | 48 'url_parse_internal.h', |
49 'url_util.cc', | 49 'url_util.cc', |
50 'url_util.h', | 50 'url_util.h', |
51 ], | 51 ], |
52 'direct_dependent_settings': { | 52 'direct_dependent_settings': { |
53 'include_dirs': [ | 53 'include_dirs': [ |
54 '..', | 54 '..', |
55 ], | 55 ], |
56 }, | 56 }, |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 ], | 90 ], |
91 ], | 91 ], |
92 } | 92 } |
93 ], | 93 ], |
94 ], | 94 ], |
95 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 95 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
96 'msvs_disabled_warnings': [4267, ], | 96 'msvs_disabled_warnings': [4267, ], |
97 }, | 97 }, |
98 ], | 98 ], |
99 } | 99 } |
OLD | NEW |