| 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 "//gpu/blink", | 50 "//gpu/blink", |
| 51 "//gpu/command_buffer/client:gles2_interface", | 51 "//gpu/command_buffer/client:gles2_interface", |
| 52 "//ipc/mojo", | 52 "//ipc/mojo", |
| 53 "//jingle:jingle_glue", | 53 "//jingle:jingle_glue", |
| 54 "//media", | 54 "//media", |
| 55 "//media/blink", | 55 "//media/blink", |
| 56 "//media/midi", | 56 "//media/midi", |
| 57 "//mojo/common", | 57 "//mojo/common", |
| 58 "//mojo/converters/geometry", | 58 "//mojo/converters/geometry", |
| 59 "//mojo/edk/js", | 59 "//mojo/edk/js", |
| 60 "//mojo/environment:chromium", | |
| 61 "//mojo/public/cpp/bindings", | 60 "//mojo/public/cpp/bindings", |
| 62 "//mojo/public/js", | 61 "//mojo/public/js", |
| 63 "//mojo/shell/public/cpp", | 62 "//mojo/shell/public/cpp", |
| 64 "//mojo/shell/public/interfaces", | 63 "//mojo/shell/public/interfaces", |
| 65 "//net", | 64 "//net", |
| 66 "//sandbox", | 65 "//sandbox", |
| 67 "//skia", | 66 "//skia", |
| 68 "//skia/public", | 67 "//skia/public", |
| 69 "//storage/common", | 68 "//storage/common", |
| 70 "//third_party/WebKit/public:blink", | 69 "//third_party/WebKit/public:blink", |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 } | 240 } |
| 242 | 241 |
| 243 if (use_seccomp_bpf) { | 242 if (use_seccomp_bpf) { |
| 244 defines += [ "USE_SECCOMP_BPF" ] | 243 defines += [ "USE_SECCOMP_BPF" ] |
| 245 } | 244 } |
| 246 | 245 |
| 247 if (use_ozone) { | 246 if (use_ozone) { |
| 248 deps += [ "//ui/ozone" ] | 247 deps += [ "//ui/ozone" ] |
| 249 } | 248 } |
| 250 } | 249 } |
| OLD | NEW |