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

Side by Side Diff: Source/web/BUILD.gn

Issue 412683003: Switch webkit_unit_tests to use the new test launcher. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix gyp for non-component Created 6 years, 5 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
« no previous file with comments | « no previous file | Source/web/tests/RunAllTests.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//third_party/WebKit/Source/bindings/bindings.gni") 6 import("//third_party/WebKit/Source/bindings/bindings.gni")
7 import("//third_party/WebKit/Source/config.gni") 7 import("//third_party/WebKit/Source/config.gni")
8 import("//third_party/WebKit/Source/core/core.gni") 8 import("//third_party/WebKit/Source/core/core.gni")
9 import("//third_party/WebKit/Source/modules/modules.gni") 9 import("//third_party/WebKit/Source/modules/modules.gni")
10 import("//third_party/WebKit/Source/platform/platform.gni") 10 import("//third_party/WebKit/Source/platform/platform.gni")
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 "//third_party/libwebp", 83 "//third_party/libwebp",
84 "//third_party/zlib", 84 "//third_party/zlib",
85 "//url", 85 "//url",
86 "//v8", 86 "//v8",
87 # "//content/test:test_support", 87 # "//content/test:test_support",
88 # webkit_unit_test_resources 88 # webkit_unit_test_resources
89 ] 89 ]
90 90
91 sources = [ "tests/RunAllTests.cpp" ] 91 sources = [ "tests/RunAllTests.cpp" ]
92 92
93 if (is_component_build) { 93 if (!is_component_build) {
94 defines = [ "BLINK_DLL_UNITTEST" ]
95 } else {
96 deps += [ "//third_party/WebKit/Source/core" ] 94 deps += [ "//third_party/WebKit/Source/core" ]
97 95
98 configs += [ "//third_party/WebKit/Source:inside_blink" ] 96 configs += [ "//third_party/WebKit/Source:inside_blink" ]
99 97
100 sources += web_gypi.web_unittest_files 98 sources += web_gypi.web_unittest_files
101 sources += bindings_unittest_files 99 sources += bindings_unittest_files
102 sources += core_unittest_files 100 sources += core_unittest_files
103 sources += modules_unittest_files 101 sources += modules_unittest_files
104 sources += platform_web_unittest_files 102 sources += platform_web_unittest_files
105 } 103 }
106 } 104 }
107 } 105 }
OLDNEW
« no previous file with comments | « no previous file | Source/web/tests/RunAllTests.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698