| 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 'includes': [ | 9 'includes': [ |
| 10 'url_srcs.gypi', | 10 'url_srcs.gypi', |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 ], | 48 ], |
| 49 'sources': [ | 49 'sources': [ |
| 50 'gurl_unittest.cc', | 50 'gurl_unittest.cc', |
| 51 'origin_unittest.cc', | 51 'origin_unittest.cc', |
| 52 'url_canon_unittest.cc', | 52 'url_canon_unittest.cc', |
| 53 'url_parse_unittest.cc', | 53 'url_parse_unittest.cc', |
| 54 'url_test_utils.h', | 54 'url_test_utils.h', |
| 55 'url_util_unittest.cc', | 55 'url_util_unittest.cc', |
| 56 ], | 56 ], |
| 57 'conditions': [ | 57 'conditions': [ |
| 58 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554 | 58 ['os_posix==1 and OS!="mac" and OS!="ios" and use_allocator!="none"', |
| 59 ['os_posix==1 and OS!="mac" and OS!="ios" and ((use_allocator!="none" an
d use_allocator!="see_use_tcmalloc") or (use_allocator=="see_use_tcmalloc" and l
inux_use_tcmalloc==1))', | |
| 60 { | 59 { |
| 61 'dependencies': [ | 60 'dependencies': [ |
| 62 '../base/allocator/allocator.gyp:allocator', | 61 '../base/allocator/allocator.gyp:allocator', |
| 63 ], | 62 ], |
| 64 } | 63 } |
| 65 ], | 64 ], |
| 66 ], | 65 ], |
| 67 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 66 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 68 'msvs_disabled_warnings': [4267, ], | 67 'msvs_disabled_warnings': [4267, ], |
| 69 }, | 68 }, |
| 70 ], | 69 ], |
| 71 } | 70 } |
| OLD | NEW |