| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 config("gtest_config") { | 5 config("gtest_config") { |
| 6 defines = [ | 6 defines = [ |
| 7 "UNIT_TEST", | 7 "UNIT_TEST", |
| 8 | 8 |
| 9 # In order to allow regex matches in gtest to be shared between Windows | 9 # In order to allow regex matches in gtest to be shared between Windows |
| 10 # and other systems, we tell gtest to always use it's internal engine. | 10 # and other systems, we tell gtest to always use it's internal engine. |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 ] | 75 ] |
| 76 } | 76 } |
| 77 | 77 |
| 78 include_dirs = [ "." ] | 78 include_dirs = [ "." ] |
| 79 | 79 |
| 80 all_dependent_configs = [ ":gtest_config" ] | 80 all_dependent_configs = [ ":gtest_config" ] |
| 81 | 81 |
| 82 configs -= [ "//build/config/compiler:chromium_code" ] | 82 configs -= [ "//build/config/compiler:chromium_code" ] |
| 83 configs += [ "//build/config/compiler:no_chromium_code" ] | 83 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 84 } | 84 } |
| OLD | NEW |