Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(382)

Side by Side Diff: components/nacl/common/BUILD.gn

Issue 2668153003: Mojo C++ Bindings: Eliminate unbound ThreadSafeInterfacePtr (Closed)
Patch Set: format and rebase... Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chromecast/app/BUILD.gn ('k') | content/app/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//mojo/public/tools/bindings/mojom.gni") 6 import("//mojo/public/tools/bindings/mojom.gni")
7 7
8 if (enable_nacl) { 8 if (enable_nacl) {
9 # This is separate so it can be used by ../broker:nacl64. 9 # This is separate so it can be used by ../broker:nacl64.
10 static_library("minimal") { 10 static_library("minimal") {
(...skipping 18 matching lines...) Expand all
29 ":minimal_content_dummy", 29 ":minimal_content_dummy",
30 ":switches", 30 ":switches",
31 ] 31 ]
32 32
33 deps = [ 33 deps = [
34 ":nacl_error_code", 34 ":nacl_error_code",
35 "//base", 35 "//base",
36 "//base:base_static", 36 "//base:base_static",
37 "//content/public/common:service_names", 37 "//content/public/common:service_names",
38 "//ipc", 38 "//ipc",
39 "//ipc:mojom",
40 "//mojo/edk/system", 39 "//mojo/edk/system",
41 "//services/service_manager/public/cpp", 40 "//services/service_manager/public/cpp",
42 ] 41 ]
43 } 42 }
44 43
45 # This exists just to make 'gn check' happy with :minimal. It can't 44 # This exists just to make 'gn check' happy with :minimal. It can't
46 # depend on //content/public/common or anything like that, because that 45 # depend on //content/public/common or anything like that, because that
47 # would bring in lots more than counts as "minimal" (stuff that should 46 # would bring in lots more than counts as "minimal" (stuff that should
48 # not be in the nacl64.exe build). 47 # not be in the nacl64.exe build).
49 source_set("minimal_content_dummy") { 48 source_set("minimal_content_dummy") {
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 "//content/public/common", 129 "//content/public/common",
131 ] 130 ]
132 } 131 }
133 132
134 static_library("switches") { 133 static_library("switches") {
135 sources = [ 134 sources = [
136 "nacl_switches.cc", 135 "nacl_switches.cc",
137 "nacl_switches.h", 136 "nacl_switches.h",
138 ] 137 ]
139 } 138 }
OLDNEW
« no previous file with comments | « chromecast/app/BUILD.gn ('k') | content/app/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698