OLD | NEW |
1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 import("//build/config/nacl/config.gni") | 6 import("//build/config/nacl/config.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
9 | 9 |
10 if (enable_nacl) { | 10 if (enable_nacl) { |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 sources = [ | 170 sources = [ |
171 "loader/nacl_ipc_adapter_unittest.cc", | 171 "loader/nacl_ipc_adapter_unittest.cc", |
172 "loader/nacl_validation_query_unittest.cc", | 172 "loader/nacl_validation_query_unittest.cc", |
173 "loader/run_all_unittests.cc", | 173 "loader/run_all_unittests.cc", |
174 ] | 174 ] |
175 | 175 |
176 deps = [ | 176 deps = [ |
177 ":nacl", | 177 ":nacl", |
178 "//base/test:test_support", | 178 "//base/test:test_support", |
179 "//ipc:test_support", | 179 "//ipc:test_support", |
| 180 "//ppapi/c", |
180 "//testing/gtest", | 181 "//testing/gtest", |
181 ] | 182 ] |
182 } | 183 } |
183 | 184 |
184 if (is_linux) { | 185 if (is_linux) { |
185 executable("nacl_helper") { | 186 executable("nacl_helper") { |
186 sources = [ | 187 sources = [ |
187 "loader/nacl_helper_linux.cc", | 188 "loader/nacl_helper_linux.cc", |
188 "loader/nacl_helper_linux.h", | 189 "loader/nacl_helper_linux.h", |
189 ] | 190 ] |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
351 | 352 |
352 if (is_linux) { | 353 if (is_linux) { |
353 sources += [ | 354 sources += [ |
354 "common/nacl_paths.cc", | 355 "common/nacl_paths.cc", |
355 "common/nacl_paths.h", | 356 "common/nacl_paths.h", |
356 ] | 357 ] |
357 | 358 |
358 defines = [ "__STDC_LIMIT_MACROS=1" ] | 359 defines = [ "__STDC_LIMIT_MACROS=1" ] |
359 } | 360 } |
360 } | 361 } |
OLD | NEW |