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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 "//device/vibration:mojo_bindings", | 50 "//device/vibration:mojo_bindings", |
51 "//gin", | 51 "//gin", |
52 "//gpu", | 52 "//gpu", |
53 "//gpu/blink", | 53 "//gpu/blink", |
54 "//gpu/command_buffer/client:gles2_interface", | 54 "//gpu/command_buffer/client:gles2_interface", |
55 "//ipc/mojo", | 55 "//ipc/mojo", |
56 "//jingle:jingle_glue", | 56 "//jingle:jingle_glue", |
57 "//media", | 57 "//media", |
58 "//media/blink", | 58 "//media/blink", |
59 "//media/midi", | 59 "//media/midi", |
60 "//mojo/application/public/cpp", | |
61 "//mojo/application/public/interfaces", | |
62 "//mojo/common:url_type_converters", | 60 "//mojo/common:url_type_converters", |
63 "//mojo/converters/geometry", | 61 "//mojo/converters/geometry", |
64 "//mojo/environment:chromium", | 62 "//mojo/environment:chromium", |
65 "//mojo/public/cpp/bindings", | 63 "//mojo/public/cpp/bindings", |
66 "//mojo/public/js", | 64 "//mojo/public/js", |
| 65 "//mojo/shell/public/cpp", |
| 66 "//mojo/shell/public/interfaces", |
67 "//net", | 67 "//net", |
68 "//skia", | 68 "//skia", |
69 "//skia/public", | 69 "//skia/public", |
70 "//storage/common", | 70 "//storage/common", |
71 "//third_party/WebKit/public:blink", | 71 "//third_party/WebKit/public:blink", |
72 "//third_party/icu", | 72 "//third_party/icu", |
73 "//third_party/libjingle", | 73 "//third_party/libjingle", |
74 "//third_party/libyuv", | 74 "//third_party/libyuv", |
75 "//third_party/mojo/src/mojo/edk/js", | 75 "//third_party/mojo/src/mojo/edk/js", |
76 "//third_party/npapi", | 76 "//third_party/npapi", |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 "vr/vr_dispatcher.h", | 229 "vr/vr_dispatcher.h", |
230 "vr/vr_type_converters.cc", | 230 "vr/vr_type_converters.cc", |
231 "vr/vr_type_converters.h", | 231 "vr/vr_type_converters.h", |
232 ] | 232 ] |
233 } | 233 } |
234 | 234 |
235 if (use_seccomp_bpf) { | 235 if (use_seccomp_bpf) { |
236 defines += [ "USE_SECCOMP_BPF" ] | 236 defines += [ "USE_SECCOMP_BPF" ] |
237 } | 237 } |
238 } | 238 } |
OLD | NEW |