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

Side by Side Diff: googleurl.gyp

Issue 12045039: Add googleurl.gyp to make it possible to build using gyp tool. (Closed) Base URL: http://google-url.googlecode.com/svn/trunk/
Patch Set: Created 7 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
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': 'googleurl',
12 'type': '<(component)',
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 'src/gurl.cc',
21 'src/gurl.h',
22 'src/url_canon.h',
23 'src/url_canon_etc.cc',
24 'src/url_canon_fileurl.cc',
25 'src/url_canon_filesystemurl.cc',
26 'src/url_canon_host.cc',
27 'src/url_canon_icu.cc',
28 'src/url_canon_icu.h',
29 'src/url_canon_internal.cc',
30 'src/url_canon_internal.h',
31 'src/url_canon_internal_file.h',
32 'src/url_canon_ip.cc',
33 'src/url_canon_ip.h',
34 'src/url_canon_mailtourl.cc',
35 'src/url_canon_path.cc',
36 'src/url_canon_pathurl.cc',
37 'src/url_canon_query.cc',
38 'src/url_canon_relative.cc',
39 'src/url_canon_stdstring.h',
40 'src/url_canon_stdurl.cc',
41 'src/url_file.h',
42 'src/url_parse.cc',
43 'src/url_parse.h',
44 'src/url_parse_file.cc',
45 'src/url_parse_internal.h',
46 'src/url_util.cc',
47 'src/url_util.h',
48 ],
49 'direct_dependent_settings': {
50 'include_dirs': [
51 '../..',
52 ],
53 },
54 'defines': [
55 'FULL_FILESYSTEM_URL_SUPPORT=1',
56 ],
57 'conditions': [
58 ['component=="shared_library"', {
59 'defines': [
60 'GURL_DLL',
61 'GURL_IMPLEMENTATION=1',
62 ],
63 'direct_dependent_settings': {
64 'defines': [
65 'GURL_DLL',
66 ],
67 },
68 }],
69 ],
70 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
71 'msvs_disabled_warnings': [4267, ],
72 },
73 {
74 'target_name': 'googleurl_unittests',
75 'type': 'executable',
76 'dependencies': [
77 'googleurl',
78 '../base/base.gyp:base_i18n',
79 '../base/base.gyp:run_all_unittests',
80 '../testing/gtest.gyp:gtest',
81 '../third_party/icu/icu.gyp:icuuc',
82 ],
83 'sources': [
84 'src/gurl_unittest.cc',
85 'src/url_canon_unittest.cc',
86 'src/url_parse_unittest.cc',
87 'src/url_test_utils.h',
88 'src/url_util_unittest.cc',
89 ],
90 'defines': [
91 'FULL_FILESYSTEM_URL_SUPPORT=1',
92 ],
93 'conditions': [
94 ['os_posix==1 and OS!="mac" and OS!="ios"', {
95 'conditions': [
96 ['linux_use_tcmalloc==1', {
97 'dependencies': [
98 '../base/allocator/allocator.gyp:allocator',
99 ],
100 }],
101 ],
102 }],
103 ],
104 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
105 'msvs_disabled_warnings': [4267, ],
106 },
107 ],
108 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698