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 static_library("browser") { |
10 sources = [ | 10 sources = [ |
11 "bad_message.cc", | 11 "bad_message.cc", |
12 "bad_message.h", | 12 "bad_message.h", |
13 "nacl_broker_host_win.cc", | 13 "nacl_broker_host_win.cc", |
14 "nacl_broker_host_win.h", | 14 "nacl_broker_host_win.h", |
15 "nacl_broker_service_win.cc", | 15 "nacl_broker_service_win.cc", |
16 "nacl_broker_service_win.h", | 16 "nacl_broker_service_win.h", |
17 "nacl_browser.cc", | 17 "nacl_browser.cc", |
18 "nacl_browser.h", | 18 "nacl_browser.h", |
19 "nacl_file_host.cc", | 19 "nacl_file_host.cc", |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 "//base", | 84 "//base", |
85 "//components/nacl/common", | 85 "//components/nacl/common", |
86 "//content/test:test_support", | 86 "//content/test:test_support", |
87 "//net:test_support", | 87 "//net:test_support", |
88 ] | 88 ] |
89 | 89 |
90 if (is_linux) { | 90 if (is_linux) { |
91 sources += [ "../zygote/nacl_fork_delegate_linux_unittest.cc" ] | 91 sources += [ "../zygote/nacl_fork_delegate_linux_unittest.cc" ] |
92 } | 92 } |
93 } | 93 } |
OLD | NEW |