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

Side by Side Diff: tools/gn/secondary/base/BUILD.gn

Issue 25698002: (mostly) working wtf / wtf_unittests gn targets (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698