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

Side by Side Diff: url/url.gyp

Issue 13998025: url: Build it as a static library. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 | « url/gurl_unittest.cc ('k') | url/url_canon.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'chromium_code': 1,
8 },
9 'targets': [
10 {
11 'target_name': 'url',
12 'type': 'static_library',
13 'dependencies': [
14 '../base/base.gyp:base',
15 '../third_party/icu/icu.gyp:icudata',
16 '../third_party/icu/icu.gyp:icui18n',
17 '../third_party/icu/icu.gyp:icuuc',
18 ],
19 'sources': [
20 'gurl.cc',
21 'gurl.h',
22 'url_canon.h',
23 'url_canon_etc.cc',
24 'url_canon_filesystemurl.cc',
25 'url_canon_fileurl.cc',
26 'url_canon_host.cc',
27 'url_canon_icu.cc',
28 'url_canon_icu.h',
29 'url_canon_internal.cc',
30 'url_canon_internal.h',
31 'url_canon_internal_file.h',
32 'url_canon_ip.cc',
33 'url_canon_ip.h',
34 'url_canon_mailtourl.cc',
35 'url_canon_path.cc',
36 'url_canon_pathurl.cc',
37 'url_canon_query.cc',
38 'url_canon_relative.cc',
39 'url_canon_stdstring.h',
40 'url_canon_stdurl.cc',
41 'url_file.h',
42 'url_parse.cc',
43 'url_parse.h',
44 'url_parse_file.cc',
45 'url_parse_internal.h',
46 'url_util.cc',
47 'url_util.h',
48 ],
49 'direct_dependent_settings': {
50 'include_dirs': [
51 '..',
52 ],
53 },
54 'defines': [
55 'FULL_FILESYSTEM_URL_SUPPORT=1',
56 ],
57 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
58 'msvs_disabled_warnings': [4267, ],
59 },
60 {
61 'target_name': 'url_unittests',
62 'type': 'executable',
63 'dependencies': [
64 '../base/base.gyp:base_i18n',
65 '../base/base.gyp:run_all_unittests',
66 '../testing/gtest.gyp:gtest',
67 '../third_party/icu/icu.gyp:icuuc',
68 'url',
69 ],
70 'sources': [
71 'gurl_unittest.cc',
72 'url_canon_unittest.cc',
73 'url_parse_unittest.cc',
74 'url_test_utils.h',
75 'url_util_unittest.cc',
76 ],
77 'defines': [
78 'FULL_FILESYSTEM_URL_SUPPORT=1',
79 ],
80 'conditions': [
81 ['os_posix==1 and OS!="mac" and OS!="ios"',
82 {
83 'conditions': [
84 ['linux_use_tcmalloc==1',
85 {
86 'dependencies': [
87 '../base/allocator/allocator.gyp:allocator',
88 ],
89 }
90 ],
91 ],
92 }
93 ],
94 ],
95 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
96 'msvs_disabled_warnings': [4267, ],
97 },
98 ],
99 }
OLDNEW
« no previous file with comments | « url/gurl_unittest.cc ('k') | url/url_canon.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698