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/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//build/module_args/v8.gni") | 8 import("//build/module_args/v8.gni") |
9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
10 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 10 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 # TODO(GYP) enable content_browsertests on Mac when it links. | 250 # TODO(GYP) enable content_browsertests on Mac when it links. |
251 if (!is_mac && (!is_win || link_chrome_on_windows)) { | 251 if (!is_mac && (!is_win || link_chrome_on_windows)) { |
252 test("content_browsertests") { | 252 test("content_browsertests") { |
253 sources = | 253 sources = |
254 rebase_path(content_tests_gypi_values.content_browsertests_sources, | 254 rebase_path(content_tests_gypi_values.content_browsertests_sources, |
255 ".", | 255 ".", |
256 "//content") | 256 "//content") |
257 | 257 |
258 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 258 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
259 | 259 |
| 260 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 261 |
260 deps = [ | 262 deps = [ |
261 ":browsertest_support", | 263 ":browsertest_support", |
262 ":web_ui_test_mojo_bindings", | 264 ":web_ui_test_mojo_bindings", |
263 "//base/allocator", | 265 "//base/allocator", |
264 "//base/test:test_support", | 266 "//base/test:test_support", |
265 "//content/common:mojo_bindings", | 267 "//content/common:mojo_bindings", |
266 "//content/gpu", | 268 "//content/gpu", |
267 "//content/public/common", | 269 "//content/public/common", |
268 "//content/public/plugin", | 270 "//content/public/plugin", |
269 "//content/public/renderer", | 271 "//content/public/renderer", |
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
696 "//content/public/common", | 698 "//content/public/common", |
697 "//testing/gtest", | 699 "//testing/gtest", |
698 "//third_party/WebKit/public:blink", | 700 "//third_party/WebKit/public:blink", |
699 "//ui/base", | 701 "//ui/base", |
700 "//ui/gfx", | 702 "//ui/gfx", |
701 "//ui/gfx/geometry", | 703 "//ui/gfx/geometry", |
702 "//ui/gl", | 704 "//ui/gl", |
703 ] | 705 ] |
704 } | 706 } |
705 } | 707 } |
OLD | NEW |