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/renderer/renderer.gni") | 7 import("//content/renderer/renderer.gni") |
8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
9 | 9 |
10 source_set("renderer") { | 10 source_set("renderer") { |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 "//content/public/common:mojo_bindings", | 42 "//content/public/common:mojo_bindings", |
43 "//crypto:platform", | 43 "//crypto:platform", |
44 "//device/battery:mojo_bindings", | 44 "//device/battery:mojo_bindings", |
45 "//device/bluetooth", | 45 "//device/bluetooth", |
46 "//device/usb/public/interfaces", | 46 "//device/usb/public/interfaces", |
47 "//device/vibration:mojo_bindings", | 47 "//device/vibration:mojo_bindings", |
48 "//gin", | 48 "//gin", |
49 "//gpu", | 49 "//gpu", |
50 "//gpu/blink", | 50 "//gpu/blink", |
51 "//gpu/command_buffer/client:gles2_interface", | 51 "//gpu/command_buffer/client:gles2_interface", |
| 52 "//gpu/command_buffer/common:gles2_utils", |
52 "//ipc/mojo", | 53 "//ipc/mojo", |
53 "//jingle:jingle_glue", | 54 "//jingle:jingle_glue", |
54 "//media", | 55 "//media", |
55 "//media/blink", | 56 "//media/blink", |
56 "//media/midi", | 57 "//media/midi", |
57 "//mojo/common", | 58 "//mojo/common", |
58 "//mojo/converters/geometry", | 59 "//mojo/converters/geometry", |
59 "//mojo/edk/js", | 60 "//mojo/edk/js", |
60 "//mojo/public/cpp/bindings", | 61 "//mojo/public/cpp/bindings", |
61 "//mojo/public/js", | 62 "//mojo/public/js", |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 } | 241 } |
241 | 242 |
242 if (use_seccomp_bpf) { | 243 if (use_seccomp_bpf) { |
243 defines += [ "USE_SECCOMP_BPF" ] | 244 defines += [ "USE_SECCOMP_BPF" ] |
244 } | 245 } |
245 | 246 |
246 if (use_ozone) { | 247 if (use_ozone) { |
247 deps += [ "//ui/ozone" ] | 248 deps += [ "//ui/ozone" ] |
248 } | 249 } |
249 } | 250 } |
OLD | NEW |