| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 "test_html_viewer_impl.cc", | 110 "test_html_viewer_impl.cc", |
| 111 "test_html_viewer_impl.h", | 111 "test_html_viewer_impl.h", |
| 112 "touch_handler.cc", | 112 "touch_handler.cc", |
| 113 "touch_handler.h", | 113 "touch_handler.h", |
| 114 "web_clipboard_impl.cc", | 114 "web_clipboard_impl.cc", |
| 115 "web_clipboard_impl.h", | 115 "web_clipboard_impl.h", |
| 116 "web_cookie_jar_impl.cc", | 116 "web_cookie_jar_impl.cc", |
| 117 "web_cookie_jar_impl.h", | 117 "web_cookie_jar_impl.h", |
| 118 "web_graphics_context_3d_command_buffer_impl.cc", | 118 "web_graphics_context_3d_command_buffer_impl.cc", |
| 119 "web_graphics_context_3d_command_buffer_impl.h", | 119 "web_graphics_context_3d_command_buffer_impl.h", |
| 120 "web_layer_impl.cc", | |
| 121 "web_layer_impl.h", | |
| 122 "web_layer_tree_view_impl.cc", | 120 "web_layer_tree_view_impl.cc", |
| 123 "web_layer_tree_view_impl.h", | 121 "web_layer_tree_view_impl.h", |
| 124 "web_mime_registry_impl.cc", | 122 "web_mime_registry_impl.cc", |
| 125 "web_mime_registry_impl.h", | 123 "web_mime_registry_impl.h", |
| 126 "web_notification_manager_impl.cc", | 124 "web_notification_manager_impl.cc", |
| 127 "web_notification_manager_impl.h", | 125 "web_notification_manager_impl.h", |
| 128 "web_socket_handle_impl.cc", | 126 "web_socket_handle_impl.cc", |
| 129 "web_socket_handle_impl.h", | 127 "web_socket_handle_impl.h", |
| 130 "web_storage_namespace_impl.cc", | 128 "web_storage_namespace_impl.cc", |
| 131 "web_storage_namespace_impl.h", | 129 "web_storage_namespace_impl.h", |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 | 360 |
| 363 data_deps = [ | 361 data_deps = [ |
| 364 ":html_viewer", | 362 ":html_viewer", |
| 365 "//components/mus", | 363 "//components/mus", |
| 366 ] | 364 ] |
| 367 | 365 |
| 368 if (is_linux && !is_android) { | 366 if (is_linux && !is_android) { |
| 369 data_deps += [ "//components/font_service" ] | 367 data_deps += [ "//components/font_service" ] |
| 370 } | 368 } |
| 371 } | 369 } |
| OLD | NEW |