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

Side by Side Diff: url/url.gyp

Issue 170843007: Introduce url::Origin to represent Web Origin. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 9 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
« no previous file with comments | « url/origin_unittest.cc ('k') | url/url_srcs.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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'url_srcs.gypi', 10 'url_srcs.gypi',
(...skipping 30 matching lines...) Expand all
41 'type': 'executable', 41 'type': 'executable',
42 'dependencies': [ 42 'dependencies': [
43 '../base/base.gyp:base_i18n', 43 '../base/base.gyp:base_i18n',
44 '../base/base.gyp:run_all_unittests', 44 '../base/base.gyp:run_all_unittests',
45 '../testing/gtest.gyp:gtest', 45 '../testing/gtest.gyp:gtest',
46 '../third_party/icu/icu.gyp:icuuc', 46 '../third_party/icu/icu.gyp:icuuc',
47 'url_lib', 47 'url_lib',
48 ], 48 ],
49 'sources': [ 49 'sources': [
50 'gurl_unittest.cc', 50 'gurl_unittest.cc',
51 'origin_unittest.cc',
51 'url_canon_unittest.cc', 52 'url_canon_unittest.cc',
52 'url_parse_unittest.cc', 53 'url_parse_unittest.cc',
53 'url_test_utils.h', 54 'url_test_utils.h',
54 'url_util_unittest.cc', 55 'url_util_unittest.cc',
55 ], 56 ],
56 'conditions': [ 57 'conditions': [
57 ['os_posix==1 and OS!="mac" and OS!="ios" and linux_use_tcmalloc==1', 58 ['os_posix==1 and OS!="mac" and OS!="ios" and linux_use_tcmalloc==1',
58 { 59 {
59 'dependencies': [ 60 'dependencies': [
60 '../base/allocator/allocator.gyp:allocator', 61 '../base/allocator/allocator.gyp:allocator',
61 ], 62 ],
62 } 63 }
63 ], 64 ],
64 ], 65 ],
65 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 66 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
66 'msvs_disabled_warnings': [4267, ], 67 'msvs_disabled_warnings': [4267, ],
67 }, 68 },
68 ], 69 ],
69 } 70 }
OLDNEW
« no previous file with comments | « url/origin_unittest.cc ('k') | url/url_srcs.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698