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", | |
Ken Rockot(use gerrit already)
2016/06/01 15:40:48
this change (and the change to DEPS) don't seem to
Anand Mistry (off Chromium)
2016/06/02 04:35:36
Oops. Forgot to revert from a prior patchset.
| |
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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
92 "//base", | 93 "//base", |
93 "//components/nacl/common", | 94 "//components/nacl/common", |
94 "//content/test:test_support", | 95 "//content/test:test_support", |
95 "//net:test_support", | 96 "//net:test_support", |
96 ] | 97 ] |
97 | 98 |
98 if (is_linux) { | 99 if (is_linux) { |
99 sources += [ "../zygote/nacl_fork_delegate_linux_unittest.cc" ] | 100 sources += [ "../zygote/nacl_fork_delegate_linux_unittest.cc" ] |
100 } | 101 } |
101 } | 102 } |
OLD | NEW |