| 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("//build/config/nacl/config.gni") | 6 import("//build/config/nacl/config.gni") |
| 7 import("//services/service_manager/public/service_manifest.gni") | 7 import("//services/service_manager/public/service_manifest.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 assert(enable_nacl) | 10 assert(enable_nacl) |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 ] | 44 ] |
| 45 } | 45 } |
| 46 | 46 |
| 47 # This exists just to make 'gn check' happy with :minimal and | 47 # This exists just to make 'gn check' happy with :minimal and |
| 48 # :nacl_helper_win_64 (below). They can't depend on //content/public/common | 48 # :nacl_helper_win_64 (below). They can't depend on //content/public/common |
| 49 # or anything like that, because that would bring in lots more than counts | 49 # or anything like that, because that would bring in lots more than counts |
| 50 # as "minimal" (stuff that should not be in the nacl64.exe build). | 50 # as "minimal" (stuff that should not be in the nacl64.exe build). |
| 51 source_set("minimal_content_dummy") { | 51 source_set("minimal_content_dummy") { |
| 52 check_includes = false | 52 check_includes = false |
| 53 sources = [ | 53 sources = [ |
| 54 "//content/public/common/child_process_sandbox_support_linux.h", | 54 "//content/public/child/child_process_sandbox_support_linux.h", |
| 55 "//content/public/common/main_function_params.h", | 55 "//content/public/common/main_function_params.h", |
| 56 "//content/public/common/sandbox_init.h", | 56 "//content/public/common/sandbox_init.h", |
| 57 ] | 57 ] |
| 58 | 58 |
| 59 # Deps required by the above headers. | 59 # Deps required by the above headers. |
| 60 deps = [ | 60 deps = [ |
| 61 "//media:media_features", | 61 "//media:media_features", |
| 62 ] | 62 ] |
| 63 } | 63 } |
| 64 | 64 |
| 65 source_set("loader") { | 65 source_set("loader") { |
| 66 public_deps = [ | 66 public_deps = [ |
| 67 ":minimal", | 67 ":minimal", |
| 68 ] | 68 ] |
| 69 deps = [ | 69 deps = [ |
| 70 "//components/nacl/common", | 70 "//components/nacl/common", |
| 71 "//content/public/child", |
| 71 "//content/public/common", | 72 "//content/public/common", |
| 72 "//ppapi/shared_impl", | 73 "//ppapi/shared_impl", |
| 73 "//services/service_manager/public/cpp", | 74 "//services/service_manager/public/cpp", |
| 74 ] | 75 ] |
| 75 | 76 |
| 76 data_deps = [ | 77 data_deps = [ |
| 77 "//ppapi/native_client:irt", | 78 "//ppapi/native_client:irt", |
| 78 "//ppapi/native_client/src/untrusted/pnacl_support_extension", | 79 "//ppapi/native_client/src/untrusted/pnacl_support_extension", |
| 79 ] | 80 ] |
| 80 } | 81 } |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 deps = [ | 292 deps = [ |
| 292 ":nacl_helper_nonsfi_unittests_main", | 293 ":nacl_helper_nonsfi_unittests_main", |
| 293 ] | 294 ] |
| 294 } | 295 } |
| 295 } | 296 } |
| 296 | 297 |
| 297 service_manifest("nacl_loader_manifest") { | 298 service_manifest("nacl_loader_manifest") { |
| 298 name = "nacl_loader" | 299 name = "nacl_loader" |
| 299 source = "nacl_loader_manifest.json" | 300 source = "nacl_loader_manifest.json" |
| 300 } | 301 } |
| OLD | NEW |