| 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 if (is_mac) { | 9 if (is_mac) { |
| 10 import("//build/config/mac/mac_sdk.gni") | 10 import("//build/config/mac/mac_sdk.gni") |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 "//mojo/environment:chromium", | 201 "//mojo/environment:chromium", |
| 202 "//sandbox", | 202 "//sandbox", |
| 203 "//storage/common", | 203 "//storage/common", |
| 204 "//third_party/WebKit/public:blink", | 204 "//third_party/WebKit/public:blink", |
| 205 "//third_party/mojo/src/mojo/edk/system", | 205 "//third_party/mojo/src/mojo/edk/system", |
| 206 "//ui/gl", | 206 "//ui/gl", |
| 207 ":mojo_bindings", | 207 ":mojo_bindings", |
| 208 ] | 208 ] |
| 209 } | 209 } |
| 210 | 210 |
| 211 defines = [] | 211 defines = [ "MOJO_SHELL_CLIENT" ] |
| 212 include_dirs = [] | 212 include_dirs = [] |
| 213 libs = [] | 213 libs = [] |
| 214 ldflags = [] | 214 ldflags = [] |
| 215 | 215 |
| 216 if (is_android && use_seccomp_bpf) { | 216 if (is_android && use_seccomp_bpf) { |
| 217 set_sources_assignment_filter([]) | 217 set_sources_assignment_filter([]) |
| 218 sources += [ | 218 sources += [ |
| 219 "sandbox_linux/sandbox_bpf_base_policy_linux.cc", | 219 "sandbox_linux/sandbox_bpf_base_policy_linux.cc", |
| 220 "sandbox_linux/sandbox_bpf_base_policy_linux.h", | 220 "sandbox_linux/sandbox_bpf_base_policy_linux.h", |
| 221 ] | 221 ] |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 | 537 |
| 538 import_dirs = [ "//mojo/services" ] | 538 import_dirs = [ "//mojo/services" ] |
| 539 | 539 |
| 540 deps = [ | 540 deps = [ |
| 541 "//content/public/common:mojo_bindings", | 541 "//content/public/common:mojo_bindings", |
| 542 "//mojo/application/public/interfaces", | 542 "//mojo/application/public/interfaces", |
| 543 "//skia/public/interfaces", | 543 "//skia/public/interfaces", |
| 544 "//ui/mojo/geometry:interfaces", | 544 "//ui/mojo/geometry:interfaces", |
| 545 ] | 545 ] |
| 546 } | 546 } |
| OLD | NEW |