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") |
11 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 11 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
12 | 12 |
13 content_tests_gypi_values = | 13 content_tests_gypi_values = |
14 exec_script("//build/gypi_to_gn.py", | 14 exec_script("//build/gypi_to_gn.py", |
15 [ | 15 [ |
16 rebase_path("../content_tests.gypi"), | 16 rebase_path("../content_tests.gypi"), |
17 "--replace=<(SHARED_INTERMEDIATE_DIR)=$root_gen_dir", | 17 "--replace=<(SHARED_INTERMEDIATE_DIR)=$root_gen_dir", |
18 ], | 18 ], |
19 "scope", | 19 "scope", |
20 [ "../content_tests.gypi" ]) | 20 [ "../content_tests.gypi" ]) |
21 | 21 |
22 # GYP version //content/content_tests.gypi:test_support_content | 22 # GYP version //content/content_tests.gypi:test_support_content |
23 source_set("test_support") { | 23 source_set("test_support") { |
24 testonly = true | 24 testonly = true |
25 public_deps = [] | 25 public_deps = [ |
26 deps = [ | |
27 "//cc/blink", | |
28 "//content/public/app:both", | 26 "//content/public/app:both", |
29 "//content/public/browser", | 27 "//content/public/browser", |
30 "//content/public/common", | 28 "//content/public/common", |
| 29 ] |
| 30 deps = [ |
| 31 "//cc/blink", |
31 "//net:test_support", | 32 "//net:test_support", |
32 "//skia", | 33 "//skia", |
33 "//storage/common", | 34 "//storage/common", |
34 "//testing/gmock", | 35 "//testing/gmock", |
35 "//testing/gtest", | 36 "//testing/gtest", |
36 "//ui/accessibility:ax_gen", | 37 "//ui/accessibility:ax_gen", |
37 "//ui/base", | 38 "//ui/base", |
38 "//ui/base/ime", | 39 "//ui/base/ime", |
39 "//ui/base:test_support", | 40 "//ui/base:test_support", |
40 "//ui/events:dom_keycode_converter", | 41 "//ui/events:dom_keycode_converter", |
(...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
691 "//gpu/blink", | 692 "//gpu/blink", |
692 "//testing/gtest", | 693 "//testing/gtest", |
693 "//third_party/WebKit/public:blink", | 694 "//third_party/WebKit/public:blink", |
694 "//ui/base", | 695 "//ui/base", |
695 "//ui/gfx", | 696 "//ui/gfx", |
696 "//ui/gfx/geometry", | 697 "//ui/gfx/geometry", |
697 "//ui/gl", | 698 "//ui/gl", |
698 ] | 699 ] |
699 } | 700 } |
700 } | 701 } |
OLD | NEW |