| 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 source_set("common") { | 10 source_set("common") { |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 "//gpu/skia_bindings", | 57 "//gpu/skia_bindings", |
| 58 "//media", | 58 "//media", |
| 59 "//media:shared_memory_support", | 59 "//media:shared_memory_support", |
| 60 "//mojo/environment:chromium", | 60 "//mojo/environment:chromium", |
| 61 "//mojo/public/interfaces/application", | 61 "//mojo/public/interfaces/application", |
| 62 "//mojo/system", | 62 "//mojo/system", |
| 63 "//sandbox", | 63 "//sandbox", |
| 64 "//third_party/WebKit/public:blink", | 64 "//third_party/WebKit/public:blink", |
| 65 "//ui/gl", | 65 "//ui/gl", |
| 66 "//webkit/browser:storage", | 66 "//webkit/browser:storage", |
| 67 "//webkit/common", | 67 "//storage/common", |
| 68 "//webkit/common:storage_common", | |
| 69 "//webkit/common/gpu", | 68 "//webkit/common/gpu", |
| 70 ] | 69 ] |
| 71 } | 70 } |
| 72 | 71 |
| 73 defines = [] | 72 defines = [] |
| 74 include_dirs = [] | 73 include_dirs = [] |
| 75 libs = [] | 74 libs = [] |
| 76 ldflags = [] | 75 ldflags = [] |
| 77 | 76 |
| 78 if (is_android && use_seccomp_bpf) { | 77 if (is_android && use_seccomp_bpf) { |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 | 272 |
| 274 mojom("mojo_bindings") { | 273 mojom("mojo_bindings") { |
| 275 sources = [ | 274 sources = [ |
| 276 "render_frame_setup.mojom", | 275 "render_frame_setup.mojom", |
| 277 ] | 276 ] |
| 278 | 277 |
| 279 deps = [ | 278 deps = [ |
| 280 "//mojo/public/interfaces/application:application", | 279 "//mojo/public/interfaces/application:application", |
| 281 ] | 280 ] |
| 282 } | 281 } |
| OLD | NEW |