| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//content/common/common.gni") | 7 import("//content/common/common.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 | 9 |
| 10 if (is_chromeos && use_x11 && cpu_arch != "arm") { | 10 if (is_chromeos && use_x11 && cpu_arch != "arm") { |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 ] | 115 ] |
| 116 | 116 |
| 117 if (!is_ios) { | 117 if (!is_ios) { |
| 118 deps += [ | 118 deps += [ |
| 119 "//cc", | 119 "//cc", |
| 120 "//ipc", | 120 "//ipc", |
| 121 "//ipc/mojo", | 121 "//ipc/mojo", |
| 122 | 122 |
| 123 # TODO: the dependency on gl_in_process_context should be decoupled from | 123 # TODO: the dependency on gl_in_process_context should be decoupled from |
| 124 # content and moved to android_webview. See crbug.com/365797. | 124 # content and moved to android_webview. See crbug.com/365797. |
| 125 "//gpu/blink", | |
| 126 "//gpu/command_buffer/client:gl_in_process_context", | 125 "//gpu/command_buffer/client:gl_in_process_context", |
| 127 "//gpu/command_buffer/client:gles2_c_lib", | 126 "//gpu/command_buffer/client:gles2_c_lib", |
| 128 "//gpu/command_buffer/client:gles2_cmd_helper", | 127 "//gpu/command_buffer/client:gles2_cmd_helper", |
| 129 "//gpu/command_buffer/client:gles2_implementation", | 128 "//gpu/command_buffer/client:gles2_implementation", |
| 130 "//gpu/command_buffer/service", | 129 "//gpu/command_buffer/service", |
| 131 "//gpu/ipc", | 130 "//gpu/ipc", |
| 132 "//gpu/skia_bindings", | 131 "//gpu/skia_bindings", |
| 133 "//media", | 132 "//media", |
| 134 "//media:shared_memory_support", | 133 "//media:shared_memory_support", |
| 135 "//mojo/edk/system", | 134 "//mojo/edk/system", |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 "geolocation_service.mojom", | 367 "geolocation_service.mojom", |
| 369 "permission_service.mojom", | 368 "permission_service.mojom", |
| 370 "render_frame_setup.mojom", | 369 "render_frame_setup.mojom", |
| 371 ] | 370 ] |
| 372 | 371 |
| 373 deps = [ | 372 deps = [ |
| 374 "//content/public/common:mojo_bindings", | 373 "//content/public/common:mojo_bindings", |
| 375 "//mojo/public/interfaces/application:application", | 374 "//mojo/public/interfaces/application:application", |
| 376 ] | 375 ] |
| 377 } | 376 } |
| OLD | NEW |