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("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
9 | 9 |
10 if (is_chromeos && cpu_arch != "arm") { | 10 if (is_chromeos && cpu_arch != "arm") { |
11 action("libva_generate_stubs") { | 11 action("libva_generate_stubs") { |
12 extra_header = "gpu/media/va_stub_header.fragment" | 12 extra_header = "gpu/media/va_stub_header.fragment" |
13 | 13 |
14 script = "../../tools/generate_stubs/generate_stubs.py" | 14 script = "../../tools/generate_stubs/generate_stubs.py" |
15 sources = [ | 15 sources = [ |
16 "gpu/media/va.sigs", | 16 "gpu/media/va.sigs", |
17 ] | 17 ] |
18 inputs = [ | 18 inputs = [ |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 "//gpu/blink", | 131 "//gpu/blink", |
132 "//gpu/command_buffer/client:gl_in_process_context", | 132 "//gpu/command_buffer/client:gl_in_process_context", |
133 "//gpu/command_buffer/client:gles2_c_lib", | 133 "//gpu/command_buffer/client:gles2_c_lib", |
134 "//gpu/command_buffer/client:gles2_cmd_helper", | 134 "//gpu/command_buffer/client:gles2_cmd_helper", |
135 "//gpu/command_buffer/client:gles2_implementation", | 135 "//gpu/command_buffer/client:gles2_implementation", |
136 "//gpu/command_buffer/service", | 136 "//gpu/command_buffer/service", |
137 "//gpu/ipc", | 137 "//gpu/ipc", |
138 "//gpu/skia_bindings", | 138 "//gpu/skia_bindings", |
139 "//media", | 139 "//media", |
140 "//media:shared_memory_support", | 140 "//media:shared_memory_support", |
141 "//mojo/edk/system", | |
142 "//mojo/environment:chromium", | 141 "//mojo/environment:chromium", |
143 "//mojo/public/interfaces/application", | |
144 "//sandbox", | 142 "//sandbox", |
145 "//storage/common", | 143 "//storage/common", |
146 "//third_party/WebKit/public:blink", | 144 "//third_party/WebKit/public:blink", |
| 145 "//third_party/mojo/src/mojo/edk/system", |
| 146 "//third_party/mojo/src/mojo/public/interfaces/application", |
147 "//ui/gl", | 147 "//ui/gl", |
148 "//webkit/common/gpu", | 148 "//webkit/common/gpu", |
149 ] | 149 ] |
150 } | 150 } |
151 | 151 |
152 defines = [] | 152 defines = [] |
153 include_dirs = [] | 153 include_dirs = [] |
154 libs = [] | 154 libs = [] |
155 ldflags = [] | 155 ldflags = [] |
156 | 156 |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
406 | 406 |
407 mojom("mojo_bindings") { | 407 mojom("mojo_bindings") { |
408 sources = [ | 408 sources = [ |
409 "geolocation_service.mojom", | 409 "geolocation_service.mojom", |
410 "permission_service.mojom", | 410 "permission_service.mojom", |
411 "render_frame_setup.mojom", | 411 "render_frame_setup.mojom", |
412 ] | 412 ] |
413 | 413 |
414 deps = [ | 414 deps = [ |
415 "//content/public/common:mojo_bindings", | 415 "//content/public/common:mojo_bindings", |
416 "//mojo/public/interfaces/application:application", | 416 "//third_party/mojo/src/mojo/public/interfaces/application:application", |
417 ] | 417 ] |
418 } | 418 } |
OLD | NEW |