Chromium Code Reviews| 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("base_libs") { | 5 config("base_libs") { |
| 6 if (!is_win) { | 6 if (!is_win) { |
| 7 ldflags = [ "-ldl" ] | 7 ldflags = [ "-ldl" ] |
| 8 } | 8 } |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 933 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 944 "test/trace_event_analyzer.cc", | 944 "test/trace_event_analyzer.cc", |
| 945 "test/trace_event_analyzer.h", | 945 "test/trace_event_analyzer.h", |
| 946 "test/unit_test_launcher.cc", | 946 "test/unit_test_launcher.cc", |
| 947 "test/unit_test_launcher.h", | 947 "test/unit_test_launcher.h", |
| 948 "test/unit_test_launcher_ios.cc", | 948 "test/unit_test_launcher_ios.cc", |
| 949 "test/values_test_util.cc", | 949 "test/values_test_util.cc", |
| 950 "test/values_test_util.h", | 950 "test/values_test_util.h", |
| 951 ] | 951 ] |
| 952 deps = [ | 952 deps = [ |
| 953 "//base", | 953 "//base", |
| 954 "//base/third_party/dynamic_annotations", | |
|
jamesr
2013/10/02 09:07:02
on mac, at least, this is needed or _AnnotateHappe
Nico
2013/10/02 15:56:30
This dependency exists in the gyp test_support_bas
| |
| 955 "//base:base_i18n", | |
| 954 "//base:base_static", | 956 "//base:base_static", |
| 955 "//base:base_i18n", | |
| 956 "//testing:gmock", | 957 "//testing:gmock", |
| 957 "//testing:gtest", | 958 "//testing:gtest", |
| 958 "//third_party/libxml:libxml2", | 959 "//third_party/libxml:libxml2", |
| 959 ] | 960 ] |
| 960 | 961 |
| 961 if (!is_posix) { | 962 if (!is_posix) { |
| 962 sources -= [ | 963 sources -= [ |
| 963 "test/scoped_locale.cc", | 964 "test/scoped_locale.cc", |
| 964 "test/scoped_locale.h", | 965 "test/scoped_locale.h", |
| 965 ] | 966 ] |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1002 static_library("run_all_unittests") { | 1003 static_library("run_all_unittests") { |
| 1003 external = true | 1004 external = true |
| 1004 sources = [ | 1005 sources = [ |
| 1005 "test/run_all_unittests.cc", | 1006 "test/run_all_unittests.cc", |
| 1006 ] | 1007 ] |
| 1007 deps = [ | 1008 deps = [ |
| 1008 ":test_support_base", | 1009 ":test_support_base", |
| 1009 ] | 1010 ] |
| 1010 } | 1011 } |
| 1011 | 1012 |
| OLD | NEW |