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 30 matching lines...) Expand all Loading... |
41 "//url", | 41 "//url", |
42 "//third_party/WebKit/public:blink_headers", | 42 "//third_party/WebKit/public:blink_headers", |
43 # TODO(GYP) convert these dependencies. | 43 # TODO(GYP) convert these dependencies. |
44 #'../third_party/libjingle/libjingle.gyp:libjingle', | 44 #'../third_party/libjingle/libjingle.gyp:libjingle', |
45 ] | 45 ] |
46 | 46 |
47 if (!is_ios) { | 47 if (!is_ios) { |
48 deps += [ | 48 deps += [ |
49 "//cc", | 49 "//cc", |
50 "//ipc", | 50 "//ipc", |
| 51 "//ipc/mojo", |
51 "//mojo/environment:chromium", | 52 "//mojo/environment:chromium", |
52 "//mojo/system", | 53 "//mojo/system", |
53 # TODO: the dependency on gl_in_process_context should be decoupled from | 54 # TODO: the dependency on gl_in_process_context should be decoupled from |
54 # content and moved to android_webview. See crbug.com/365797. | 55 # content and moved to android_webview. See crbug.com/365797. |
55 "//gpu/command_buffer/client:gl_in_process_context", | 56 "//gpu/command_buffer/client:gl_in_process_context", |
56 "//gpu/command_buffer/client:gles2_c_lib", | 57 "//gpu/command_buffer/client:gles2_c_lib", |
57 "//gpu/command_buffer/client:gles2_implementation", | 58 "//gpu/command_buffer/client:gles2_implementation", |
58 "//gpu/command_buffer/service", | 59 "//gpu/command_buffer/service", |
59 "//gpu/ipc", | 60 "//gpu/ipc", |
60 "//gpu/skia_bindings", | 61 "//gpu/skia_bindings", |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 | 273 |
273 mojom("mojo_bindings") { | 274 mojom("mojo_bindings") { |
274 sources = [ | 275 sources = [ |
275 "render_frame_setup.mojom", | 276 "render_frame_setup.mojom", |
276 ] | 277 ] |
277 | 278 |
278 deps = [ | 279 deps = [ |
279 "//mojo/public/interfaces/application:application", | 280 "//mojo/public/interfaces/application:application", |
280 ] | 281 ] |
281 } | 282 } |
OLD | NEW |