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 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 "//base", | 87 "//base", |
87 "//components/nacl/common", | 88 "//components/nacl/common", |
88 "//content/test:test_support", | 89 "//content/test:test_support", |
89 "//net:test_support", | 90 "//net:test_support", |
90 ] | 91 ] |
91 | 92 |
92 if (is_linux) { | 93 if (is_linux) { |
93 sources += [ "../zygote/nacl_fork_delegate_linux_unittest.cc" ] | 94 sources += [ "../zygote/nacl_fork_delegate_linux_unittest.cc" ] |
94 } | 95 } |
95 } | 96 } |
OLD | NEW |