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

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

Issue 1131763003: Do not restrict the visibility of webkit_unit_tests to only third_party/WebKit. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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 | no next file » | 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("//testing/test.gni") 6 import("//testing/test.gni")
7 import("//third_party/WebKit/Source/bindings/bindings.gni") 7 import("//third_party/WebKit/Source/bindings/bindings.gni")
8 import("//third_party/WebKit/Source/config.gni") 8 import("//third_party/WebKit/Source/config.gni")
9 import("//third_party/WebKit/Source/core/core.gni") 9 import("//third_party/WebKit/Source/core/core.gni")
10 import("//third_party/WebKit/Source/modules/modules.gni") 10 import("//third_party/WebKit/Source/modules/modules.gni")
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 include_dirs = [ 99 include_dirs = [
100 "$root_gen_dir/blink", 100 "$root_gen_dir/blink",
101 ] 101 ]
102 } 102 }
103 } 103 }
104 104
105 # GYP version: WebKit/Source/web/web_tests.gyp:webkit_unit_tests 105 # GYP version: WebKit/Source/web/web_tests.gyp:webkit_unit_tests
106 if (!is_mac) { 106 if (!is_mac) {
107 # TODO(GYP): Can't link Blink binaries yet on mac. 107 # TODO(GYP): Can't link Blink binaries yet on mac.
108 test("webkit_unit_tests") { 108 test("webkit_unit_tests") {
109 visibility = [] # Allow re-assignment of list.
110 visibility = [ "*" ]
111
109 deps = [ 112 deps = [
110 ":test_support", 113 ":test_support",
111 ":web", 114 ":web",
112 "//base", 115 "//base",
113 "//base/test:test_support", 116 "//base/test:test_support",
114 "//base:i18n", 117 "//base:i18n",
115 "//content/test:test_support", 118 "//content/test:test_support",
116 "//testing/gmock", 119 "//testing/gmock",
117 "//testing/gtest", 120 "//testing/gtest",
118 "//third_party/WebKit/Source/wtf:test_support", 121 "//third_party/WebKit/Source/wtf:test_support",
(...skipping 14 matching lines...) Expand all
133 136
134 sources += web_gypi.web_unittest_files 137 sources += web_gypi.web_unittest_files
135 sources += bindings_unittest_files 138 sources += bindings_unittest_files
136 sources += core_unittest_files 139 sources += core_unittest_files
137 sources += modules_unittest_files 140 sources += modules_unittest_files
138 sources += platform_unittest_support_files 141 sources += platform_unittest_support_files
139 sources += platform_web_unittest_files 142 sources += platform_web_unittest_files
140 } 143 }
141 } 144 }
142 } 145 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698