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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 | 47 |
48 public_deps = [ | 48 public_deps = [ |
49 "//gpu/command_buffer/common", | 49 "//gpu/command_buffer/common", |
50 "//third_party/WebKit/public:blink_headers", | 50 "//third_party/WebKit/public:blink_headers", |
51 ] | 51 ] |
52 deps = [ | 52 deps = [ |
53 "//base", | 53 "//base", |
54 "//build/util:webkit_version", | 54 "//build/util:webkit_version", |
55 "//components/tracing", | 55 "//components/tracing", |
56 "//gpu/command_buffer/client:gles2_interface", | 56 "//gpu/command_buffer/client:gles2_interface", |
| 57 "//gpu/command_buffer/client:gpu_memory_buffer_manager", |
57 "//net", | 58 "//net", |
58 "//skia", | 59 "//skia", |
59 "//third_party/icu", | 60 "//third_party/icu", |
60 "//ui/accessibility", | 61 "//ui/accessibility", |
61 "//ui/base", | 62 "//ui/base", |
62 "//ui/events/ipc", | 63 "//ui/events/ipc", |
63 "//ui/gfx", | 64 "//ui/gfx", |
64 "//ui/gfx/geometry", | 65 "//ui/gfx/geometry", |
65 "//ui/gfx/ipc", | 66 "//ui/gfx/ipc", |
66 "//ui/shell_dialogs", | 67 "//ui/shell_dialogs", |
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 | 319 |
319 mojom("mojo_bindings") { | 320 mojom("mojo_bindings") { |
320 sources = [ | 321 sources = [ |
321 "render_frame_setup.mojom", | 322 "render_frame_setup.mojom", |
322 ] | 323 ] |
323 | 324 |
324 deps = [ | 325 deps = [ |
325 "//mojo/public/interfaces/application:application", | 326 "//mojo/public/interfaces/application:application", |
326 ] | 327 ] |
327 } | 328 } |
OLD | NEW |