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/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 15 matching lines...) Expand all Loading... |
26 "//third_party/WebKit/Source/modules", | 26 "//third_party/WebKit/Source/modules", |
27 "//third_party/WebKit/Source/platform", | 27 "//third_party/WebKit/Source/platform", |
28 "//third_party/angle:translator", | 28 "//third_party/angle:translator", |
29 "//third_party/icu", | 29 "//third_party/icu", |
30 "//ui/gfx/geometry", | 30 "//ui/gfx/geometry", |
31 "//v8", | 31 "//v8", |
32 ] | 32 ] |
33 | 33 |
34 configs += [ | 34 configs += [ |
35 "//build/config/compiler:wexit_time_destructors", | 35 "//build/config/compiler:wexit_time_destructors", |
| 36 "//third_party/WebKit/Source:blink_pch", |
36 "//third_party/WebKit/Source:config", | 37 "//third_party/WebKit/Source:config", |
37 "//third_party/WebKit/Source:inside_blink", | 38 "//third_party/WebKit/Source:inside_blink", |
38 "//third_party/WebKit/Source:non_test_config", | 39 "//third_party/WebKit/Source:non_test_config", |
39 ] | 40 ] |
40 | 41 |
41 defines = [ "BLINK_WEB_IMPLEMENTATION=1" ] | 42 defines = [ "BLINK_WEB_IMPLEMENTATION=1" ] |
42 | 43 |
43 sources = web_gypi.web_files | 44 sources = web_gypi.web_files |
44 | 45 |
45 if (!use_default_render_theme) { | 46 if (!use_default_render_theme) { |
(...skipping 26 matching lines...) Expand all Loading... |
72 "//third_party/WebKit/Source/core:testing", | 73 "//third_party/WebKit/Source/core:testing", |
73 "//third_party/WebKit/Source/modules:modules_testing", | 74 "//third_party/WebKit/Source/modules:modules_testing", |
74 "//third_party/WebKit/Source/wtf", | 75 "//third_party/WebKit/Source/wtf", |
75 "//v8", | 76 "//v8", |
76 ] | 77 ] |
77 | 78 |
78 sources = [ | 79 sources = [ |
79 "WebTestingSupport.cpp", | 80 "WebTestingSupport.cpp", |
80 ] | 81 ] |
81 | 82 |
82 configs += [ "//third_party/WebKit/Source:config" ] | 83 configs += [ |
| 84 "//third_party/WebKit/Source:blink_pch", |
| 85 "//third_party/WebKit/Source:config", |
| 86 ] |
83 | 87 |
84 include_dirs = [ "$root_gen_dir/blink" ] | 88 include_dirs = [ "$root_gen_dir/blink" ] |
85 } | 89 } |
86 | 90 |
87 group("webkit_unit_tests_data") { | 91 group("webkit_unit_tests_data") { |
88 data = [ | 92 data = [ |
89 "tests/data/", | 93 "tests/data/", |
90 "../core/paint/test_data/", | 94 "../core/paint/test_data/", |
91 ] | 95 ] |
92 } | 96 } |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 sources = [ | 130 sources = [ |
127 "tests/RunAllTests.cpp", | 131 "tests/RunAllTests.cpp", |
128 ] | 132 ] |
129 sources += web_unittest_files | 133 sources += web_unittest_files |
130 sources += bindings_unittest_files | 134 sources += bindings_unittest_files |
131 sources += core_unittest_files | 135 sources += core_unittest_files |
132 sources += modules_unittest_files | 136 sources += modules_unittest_files |
133 sources += platform_web_unittest_files | 137 sources += platform_web_unittest_files |
134 | 138 |
135 configs += [ | 139 configs += [ |
| 140 "//third_party/WebKit/Source:blink_pch", |
136 "//third_party/WebKit/Source:config", | 141 "//third_party/WebKit/Source:config", |
137 "//third_party/WebKit/Source:inside_blink", | 142 "//third_party/WebKit/Source:inside_blink", |
138 ] | 143 ] |
139 | 144 |
140 if (is_android) { | 145 if (is_android) { |
141 deps += [ | 146 deps += [ |
142 "//base:base_java", | 147 "//base:base_java", |
143 "//content/public/android:content_java", | 148 "//content/public/android:content_java", |
144 "//content/shell/android:content_shell_assets", | 149 "//content/shell/android:content_shell_assets", |
145 "//net/android:net_java", | 150 "//net/android:net_java", |
146 ] | 151 ] |
147 } | 152 } |
148 } | 153 } |
OLD | NEW |