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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 | 73 |
74 source_set("unit_tests") { | 74 source_set("unit_tests") { |
75 testonly = true | 75 testonly = true |
76 sources = [ | 76 sources = [ |
77 "nacl_file_host_unittest.cc", | 77 "nacl_file_host_unittest.cc", |
78 "nacl_process_host_unittest.cc", | 78 "nacl_process_host_unittest.cc", |
79 "nacl_validation_cache_unittest.cc", | 79 "nacl_validation_cache_unittest.cc", |
80 "pnacl_host_unittest.cc", | 80 "pnacl_host_unittest.cc", |
81 "pnacl_translation_cache_unittest.cc", | 81 "pnacl_translation_cache_unittest.cc", |
82 "test_nacl_browser_delegate.cc", | 82 "test_nacl_browser_delegate.cc", |
| 83 "test_nacl_browser_delegate.h", |
83 ] | 84 ] |
84 | 85 |
85 deps = [ | 86 deps = [ |
86 ":browser", | 87 ":browser", |
87 "//base", | 88 "//base", |
88 "//components/nacl/common", | 89 "//components/nacl/common", |
89 "//content/test:test_support", | 90 "//content/test:test_support", |
90 "//net:test_support", | 91 "//net:test_support", |
91 ] | 92 ] |
92 | 93 |
93 if (is_linux) { | 94 if (is_linux) { |
94 sources += [ "../zygote/nacl_fork_delegate_linux_unittest.cc" ] | 95 sources += [ "../zygote/nacl_fork_delegate_linux_unittest.cc" ] |
95 } | 96 } |
96 } | 97 } |
OLD | NEW |