| 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("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 assert(enable_nacl) | 9 assert(enable_nacl) |
| 10 | 10 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 source_set("minimal_content_dummy") { | 48 source_set("minimal_content_dummy") { |
| 49 check_includes = false | 49 check_includes = false |
| 50 sources = [ | 50 sources = [ |
| 51 "//content/public/common/child_process_sandbox_support_linux.h", | 51 "//content/public/common/child_process_sandbox_support_linux.h", |
| 52 "//content/public/common/content_descriptors.h", | 52 "//content/public/common/content_descriptors.h", |
| 53 "//content/public/common/content_switches.h", | 53 "//content/public/common/content_switches.h", |
| 54 "//content/public/common/main_function_params.h", | 54 "//content/public/common/main_function_params.h", |
| 55 "//content/public/common/mojo_channel_switches.h", | 55 "//content/public/common/mojo_channel_switches.h", |
| 56 "//content/public/common/sandbox_init.h", | 56 "//content/public/common/sandbox_init.h", |
| 57 ] | 57 ] |
| 58 |
| 59 # Deps required by the above headers. |
| 60 deps = [ |
| 61 "//media:media_features", |
| 62 ] |
| 58 } | 63 } |
| 59 | 64 |
| 60 source_set("loader") { | 65 source_set("loader") { |
| 61 public_deps = [ | 66 public_deps = [ |
| 62 ":minimal", | 67 ":minimal", |
| 63 ] | 68 ] |
| 64 deps = [ | 69 deps = [ |
| 65 "//components/nacl/common", | 70 "//components/nacl/common", |
| 66 "//content/public/common", | 71 "//content/public/common", |
| 67 "//ppapi/shared_impl", | 72 "//ppapi/shared_impl", |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 "${root_out_dir}/nacl_helper_nonsfi_unittests_main", | 288 "${root_out_dir}/nacl_helper_nonsfi_unittests_main", |
| 284 ] | 289 ] |
| 285 outputs = [ | 290 outputs = [ |
| 286 "${root_build_dir}/{{source_file_part}}", | 291 "${root_build_dir}/{{source_file_part}}", |
| 287 ] | 292 ] |
| 288 deps = [ | 293 deps = [ |
| 289 ":nacl_helper_nonsfi_unittests_main", | 294 ":nacl_helper_nonsfi_unittests_main", |
| 290 ] | 295 ] |
| 291 } | 296 } |
| 292 } | 297 } |
| OLD | NEW |