OLD | NEW |
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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//build/module_args/v8.gni") | 9 import("//build/module_args/v8.gni") |
10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 | 180 |
181 source_set("browsertest_support") { | 181 source_set("browsertest_support") { |
182 testonly = true | 182 testonly = true |
183 | 183 |
184 sources = [ | 184 sources = [ |
185 "../public/test/content_browser_test.cc", | 185 "../public/test/content_browser_test.cc", |
186 "../public/test/content_browser_test.h", | 186 "../public/test/content_browser_test.h", |
187 "../public/test/content_browser_test_utils.cc", | 187 "../public/test/content_browser_test_utils.cc", |
188 "../public/test/content_browser_test_utils.h", | 188 "../public/test/content_browser_test_utils.h", |
189 "../public/test/content_browser_test_utils_mac.mm", | 189 "../public/test/content_browser_test_utils_mac.mm", |
| 190 "content_browser_test_utils_internal.cc", |
| 191 "content_browser_test_utils_internal.h", |
190 "content_test_launcher.cc", | 192 "content_test_launcher.cc", |
191 ] | 193 ] |
192 | 194 |
193 deps = [ | 195 deps = [ |
194 "//content/shell:content_shell_lib", | 196 "//content/shell:content_shell_lib", |
195 "//skia", | 197 "//skia", |
196 "//testing/gtest", | 198 "//testing/gtest", |
197 "//ui/accessibility:ax_gen", | 199 "//ui/accessibility:ax_gen", |
198 ] | 200 ] |
199 | 201 |
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
691 "//gpu/blink", | 693 "//gpu/blink", |
692 "//testing/gtest", | 694 "//testing/gtest", |
693 "//third_party/WebKit/public:blink", | 695 "//third_party/WebKit/public:blink", |
694 "//ui/base", | 696 "//ui/base", |
695 "//ui/gfx", | 697 "//ui/gfx", |
696 "//ui/gfx/geometry", | 698 "//ui/gfx/geometry", |
697 "//ui/gl", | 699 "//ui/gl", |
698 ] | 700 ] |
699 } | 701 } |
700 } | 702 } |
OLD | NEW |