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/module_args/v8.gni") | 5 import("//build/module_args/v8.gni") |
6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
10 | 10 |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 "layout_test_html_viewer.cc", | 240 "layout_test_html_viewer.cc", |
241 "layout_test_html_viewer.h", | 241 "layout_test_html_viewer.h", |
242 "layout_test_html_viewer_main.cc", | 242 "layout_test_html_viewer_main.cc", |
243 "web_test_delegate_impl.cc", | 243 "web_test_delegate_impl.cc", |
244 "web_test_delegate_impl.h", | 244 "web_test_delegate_impl.h", |
245 ] | 245 ] |
246 deps = [ | 246 deps = [ |
247 ":lib", | 247 ":lib", |
248 ":pak", | 248 ":pak", |
249 "//cc", | 249 "//cc", |
| 250 "//components/html_viewer/public/interfaces", |
250 "//components/test_runner", | 251 "//components/test_runner", |
251 "//mojo/application/public/cpp:sources", | 252 "//mojo/application/public/cpp:sources", |
252 "//third_party/WebKit/public:blink", | 253 "//third_party/WebKit/public:blink", |
253 "//third_party/WebKit/public:test_support", | 254 "//third_party/WebKit/public:test_support", |
254 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", | 255 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", |
255 "//ui/base", | 256 "//ui/base", |
256 "//url", | 257 "//url", |
257 ] | 258 ] |
258 resources = [ "$root_out_dir/html_viewer.pak" ] | 259 resources = [ "$root_out_dir/html_viewer.pak" ] |
259 | 260 |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 | 346 |
346 data_deps = [ | 347 data_deps = [ |
347 ":html_viewer", | 348 ":html_viewer", |
348 "//components/view_manager", | 349 "//components/view_manager", |
349 ] | 350 ] |
350 | 351 |
351 if (is_linux && !is_android) { | 352 if (is_linux && !is_android) { |
352 data_deps += [ "//components/font_service" ] | 353 data_deps += [ "//components/font_service" ] |
353 } | 354 } |
354 } | 355 } |
OLD | NEW |