| 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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 "layout_test_html_viewer.h", | 242 "layout_test_html_viewer.h", |
| 243 "layout_test_html_viewer_main.cc", | 243 "layout_test_html_viewer_main.cc", |
| 244 "web_test_delegate_impl.cc", | 244 "web_test_delegate_impl.cc", |
| 245 "web_test_delegate_impl.h", | 245 "web_test_delegate_impl.h", |
| 246 ] | 246 ] |
| 247 deps = [ | 247 deps = [ |
| 248 ":lib", | 248 ":lib", |
| 249 ":pak", | 249 ":pak", |
| 250 "//cc", | 250 "//cc", |
| 251 "//components/test_runner", | 251 "//components/test_runner", |
| 252 "//components/web_view/test_runner/public/interfaces", |
| 252 "//mojo/application/public/cpp:sources", | 253 "//mojo/application/public/cpp:sources", |
| 253 "//third_party/WebKit/public:blink", | 254 "//third_party/WebKit/public:blink", |
| 254 "//third_party/WebKit/public:test_support", | 255 "//third_party/WebKit/public:test_support", |
| 255 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", | 256 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", |
| 256 "//ui/base", | 257 "//ui/base", |
| 257 "//url", | 258 "//url", |
| 258 ] | 259 ] |
| 259 resources = [ "$root_out_dir/html_viewer.pak" ] | 260 resources = [ "$root_out_dir/html_viewer.pak" ] |
| 260 | 261 |
| 261 if (v8_use_external_startup_data) { | 262 if (v8_use_external_startup_data) { |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 | 347 |
| 347 data_deps = [ | 348 data_deps = [ |
| 348 ":html_viewer", | 349 ":html_viewer", |
| 349 "//components/view_manager", | 350 "//components/view_manager", |
| 350 ] | 351 ] |
| 351 | 352 |
| 352 if (is_linux && !is_android) { | 353 if (is_linux && !is_android) { |
| 353 data_deps += [ "//components/font_service" ] | 354 data_deps += [ "//components/font_service" ] |
| 354 } | 355 } |
| 355 } | 356 } |
| OLD | NEW |