| 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 | 6 |
| 7 assert(enable_nacl) | 7 assert(enable_nacl) |
| 8 | 8 |
| 9 static_library("browser") { | 9 static_library("browser") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 ] | 31 ] |
| 32 | 32 |
| 33 deps = [ | 33 deps = [ |
| 34 "//base", | 34 "//base", |
| 35 "//base/third_party/dynamic_annotations", | 35 "//base/third_party/dynamic_annotations", |
| 36 "//components/nacl/common", | 36 "//components/nacl/common", |
| 37 "//components/nacl/common:debug_exception_handler", | 37 "//components/nacl/common:debug_exception_handler", |
| 38 "//components/url_formatter", | 38 "//components/url_formatter", |
| 39 "//content/public/browser", | 39 "//content/public/browser", |
| 40 "//content/public/common", | 40 "//content/public/common", |
| 41 "//ipc", | |
| 42 "//mojo/edk/system", | 41 "//mojo/edk/system", |
| 43 "//native_client/src/trusted/service_runtime:sel_main_chrome", | 42 "//native_client/src/trusted/service_runtime:sel_main_chrome", |
| 44 "//net", | 43 "//net", |
| 45 "//ppapi/host", | 44 "//ppapi/host", |
| 46 "//ppapi/proxy:ipc", | 45 "//ppapi/proxy:ipc", |
| 47 "//ppapi/shared_impl", | 46 "//ppapi/shared_impl", |
| 48 ] | 47 ] |
| 49 | 48 |
| 49 public_deps = [ |
| 50 "//ipc", |
| 51 ] |
| 52 |
| 50 data_deps = [] | 53 data_deps = [] |
| 51 | 54 |
| 52 if (is_linux) { | 55 if (is_linux) { |
| 53 sources += [ | 56 sources += [ |
| 54 "../zygote/nacl_fork_delegate_linux.cc", | 57 "../zygote/nacl_fork_delegate_linux.cc", |
| 55 "../zygote/nacl_fork_delegate_linux.h", | 58 "../zygote/nacl_fork_delegate_linux.h", |
| 56 ] | 59 ] |
| 57 | 60 |
| 58 deps += [ | 61 deps += [ |
| 59 "//components/nacl/loader:nacl_helper_integration", | 62 "//components/nacl/loader:nacl_helper_integration", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 87 "//base", | 90 "//base", |
| 88 "//components/nacl/common", | 91 "//components/nacl/common", |
| 89 "//content/test:test_support", | 92 "//content/test:test_support", |
| 90 "//net:test_support", | 93 "//net:test_support", |
| 91 ] | 94 ] |
| 92 | 95 |
| 93 if (is_linux) { | 96 if (is_linux) { |
| 94 sources += [ "../zygote/nacl_fork_delegate_linux_unittest.cc" ] | 97 sources += [ "../zygote/nacl_fork_delegate_linux_unittest.cc" ] |
| 95 } | 98 } |
| 96 } | 99 } |
| OLD | NEW |