OLD | NEW |
---|---|
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
65 'defines': [ | 65 'defines': [ |
66 'GURL_DLL', | 66 'GURL_DLL', |
67 ], | 67 ], |
68 }, | 68 }, |
69 }], | 69 }], |
70 ], | 70 ], |
71 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 71 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
72 'msvs_disabled_warnings': [4267, ], | 72 'msvs_disabled_warnings': [4267, ], |
73 }, | 73 }, |
74 { | 74 { |
75 'target_name': 'url_unittests', | 75 'target_name': 'googleurl_unittests', |
brettw
2013/04/12 04:37:44
url_unittests made more sense here, is this change
tfarina
2013/04/12 14:07:13
yes, the bots are building googleurl_unittests yet
| |
76 'type': 'executable', | 76 'type': 'executable', |
77 'dependencies': [ | 77 'dependencies': [ |
78 'url', | 78 'url', |
79 '../base/base.gyp:base_i18n', | 79 '../base/base.gyp:base_i18n', |
80 '../base/base.gyp:run_all_unittests', | 80 '../base/base.gyp:run_all_unittests', |
81 '../testing/gtest.gyp:gtest', | 81 '../testing/gtest.gyp:gtest', |
82 '../third_party/icu/icu.gyp:icuuc', | 82 '../third_party/icu/icu.gyp:icuuc', |
83 ], | 83 ], |
84 'sources': [ | 84 'sources': [ |
85 'gurl_unittest.cc', | 85 'gurl_unittest.cc', |
(...skipping 14 matching lines...) Expand all Loading... | |
100 ], | 100 ], |
101 }], | 101 }], |
102 ], | 102 ], |
103 }], | 103 }], |
104 ], | 104 ], |
105 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 105 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
106 'msvs_disabled_warnings': [4267, ], | 106 'msvs_disabled_warnings': [4267, ], |
107 }, | 107 }, |
108 ], | 108 ], |
109 } | 109 } |
OLD | NEW |