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