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 source_set("common") { | 10 source_set("common") { |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 "//ipc", | 49 "//ipc", |
50 "//mojo/environment:chromium", | 50 "//mojo/environment:chromium", |
51 "//mojo/system", | 51 "//mojo/system", |
52 # TODO: the dependency on gl_in_process_context should be decoupled from | 52 # TODO: the dependency on gl_in_process_context should be decoupled from |
53 # content and moved to android_webview. See crbug.com/365797. | 53 # content and moved to android_webview. See crbug.com/365797. |
54 "//gpu/command_buffer/client:gl_in_process_context", | 54 "//gpu/command_buffer/client:gl_in_process_context", |
55 "//gpu/command_buffer/client:gles2_c_lib", | 55 "//gpu/command_buffer/client:gles2_c_lib", |
56 "//gpu/command_buffer/client:gles2_implementation", | 56 "//gpu/command_buffer/client:gles2_implementation", |
57 "//gpu/command_buffer/service", | 57 "//gpu/command_buffer/service", |
58 "//gpu/ipc", | 58 "//gpu/ipc", |
| 59 "//mojo/public/interfaces/interface_provider", |
59 "//ui/gl", | 60 "//ui/gl", |
60 "//webkit/browser:storage", | 61 "//webkit/browser:storage", |
61 "//webkit/common", | 62 "//webkit/common", |
62 "//webkit/common:storage", | 63 "//webkit/common:storage", |
63 "//webkit/common/gpu", | 64 "//webkit/common/gpu", |
64 #'../gpu/gpu.gyp:gl_in_process_context', | 65 #'../gpu/gpu.gyp:gl_in_process_context', |
65 #'../gpu/skia_bindings/skia_bindings.gyp:gpu_skia_bindings', | 66 #'../gpu/skia_bindings/skia_bindings.gyp:gpu_skia_bindings', |
66 #'../media/media.gyp:media', | 67 #'../media/media.gyp:media', |
67 #'../media/media.gyp:shared_memory_support', | 68 #'../media/media.gyp:shared_memory_support', |
68 #'../third_party/WebKit/public/blink.gyp:blink', | 69 #'../third_party/WebKit/public/blink.gyp:blink', |
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 sources -= [ | 258 sources -= [ |
258 "sandbox_linux/android/sandbox_bpf_base_policy_android.cc", | 259 "sandbox_linux/android/sandbox_bpf_base_policy_android.cc", |
259 "sandbox_linux/android/sandbox_bpf_base_policy_android.h", | 260 "sandbox_linux/android/sandbox_bpf_base_policy_android.h", |
260 ] | 261 ] |
261 } | 262 } |
262 } | 263 } |
263 } | 264 } |
264 | 265 |
265 mojom("mojo_bindings") { | 266 mojom("mojo_bindings") { |
266 sources = [ | 267 sources = [ |
267 "web_ui_setup.mojom", | 268 "render_frame_setup.mojom", |
268 ] | 269 ] |
269 } | 270 } |
OLD | NEW |