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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 "stats_collection_controller.cc", | 108 "stats_collection_controller.cc", |
109 "stats_collection_controller.h", | 109 "stats_collection_controller.h", |
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", |
| 119 "web_graphics_context_3d_command_buffer_impl.h", |
118 "web_layer_impl.cc", | 120 "web_layer_impl.cc", |
119 "web_layer_impl.h", | 121 "web_layer_impl.h", |
120 "web_layer_tree_view_impl.cc", | 122 "web_layer_tree_view_impl.cc", |
121 "web_layer_tree_view_impl.h", | 123 "web_layer_tree_view_impl.h", |
122 "web_mime_registry_impl.cc", | 124 "web_mime_registry_impl.cc", |
123 "web_mime_registry_impl.h", | 125 "web_mime_registry_impl.h", |
124 "web_notification_manager_impl.cc", | 126 "web_notification_manager_impl.cc", |
125 "web_notification_manager_impl.h", | 127 "web_notification_manager_impl.h", |
126 "web_socket_handle_impl.cc", | 128 "web_socket_handle_impl.cc", |
127 "web_socket_handle_impl.h", | 129 "web_socket_handle_impl.h", |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 | 351 |
350 data_deps = [ | 352 data_deps = [ |
351 ":html_viewer", | 353 ":html_viewer", |
352 "//components/view_manager", | 354 "//components/view_manager", |
353 ] | 355 ] |
354 | 356 |
355 if (is_linux && !is_android) { | 357 if (is_linux && !is_android) { |
356 data_deps += [ "//components/font_service" ] | 358 data_deps += [ "//components/font_service" ] |
357 } | 359 } |
358 } | 360 } |
OLD | NEW |