| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |