| 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 source_set("browser") { | 9 source_set("browser") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 21 matching lines...) Expand all Loading... |
| 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", | 41 "//ipc", |
| 42 "//mojo/edk/system", |
| 42 "//native_client/src/trusted/service_runtime:sel_main_chrome", | 43 "//native_client/src/trusted/service_runtime:sel_main_chrome", |
| 43 "//net", | 44 "//net", |
| 44 "//ppapi/host", | 45 "//ppapi/host", |
| 45 "//ppapi/proxy:ipc", | 46 "//ppapi/proxy:ipc", |
| 46 "//ppapi/shared_impl", | 47 "//ppapi/shared_impl", |
| 47 ] | 48 ] |
| 48 | 49 |
| 49 data_deps = [] | 50 data_deps = [] |
| 50 | 51 |
| 51 if (is_linux) { | 52 if (is_linux) { |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 "//base", | 85 "//base", |
| 85 "//components/nacl/common", | 86 "//components/nacl/common", |
| 86 "//content/test:test_support", | 87 "//content/test:test_support", |
| 87 "//net:test_support", | 88 "//net:test_support", |
| 88 ] | 89 ] |
| 89 | 90 |
| 90 if (is_linux) { | 91 if (is_linux) { |
| 91 sources += [ "../zygote/nacl_fork_delegate_linux_unittest.cc" ] | 92 sources += [ "../zygote/nacl_fork_delegate_linux_unittest.cc" ] |
| 92 } | 93 } |
| 93 } | 94 } |
| OLD | NEW |