| 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/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 if (enable_nacl) { | 9 if (enable_nacl) { |
| 10 source_set("nacl") { | 10 source_set("nacl") { |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 ":nacl_switches", | 139 ":nacl_switches", |
| 140 "renderer/plugin:nacl_trusted_plugin", | 140 "renderer/plugin:nacl_trusted_plugin", |
| 141 "//base", | 141 "//base", |
| 142 "//content/public/common", | 142 "//content/public/common", |
| 143 "//content/public/renderer", | 143 "//content/public/renderer", |
| 144 "//ipc", | 144 "//ipc", |
| 145 "//net", | 145 "//net", |
| 146 "//ppapi/c", | 146 "//ppapi/c", |
| 147 "//ppapi/proxy:ipc", | 147 "//ppapi/proxy:ipc", |
| 148 "//ppapi/shared_impl", | 148 "//ppapi/shared_impl", |
| 149 "//ppapi/thunk", | |
| 150 "//third_party/WebKit/public:blink", | 149 "//third_party/WebKit/public:blink", |
| 151 "//third_party/jsoncpp", | 150 "//third_party/jsoncpp", |
| 152 ] | 151 ] |
| 153 } | 152 } |
| 154 | 153 |
| 155 test("nacl_loader_unittests") { | 154 test("nacl_loader_unittests") { |
| 156 sources = [ | 155 sources = [ |
| 157 "loader/nacl_ipc_adapter_unittest.cc", | 156 "loader/nacl_ipc_adapter_unittest.cc", |
| 158 "loader/nacl_validation_query_unittest.cc", | 157 "loader/nacl_validation_query_unittest.cc", |
| 159 "loader/run_all_unittests.cc", | 158 "loader/run_all_unittests.cc", |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 | 303 |
| 305 if (is_linux) { | 304 if (is_linux) { |
| 306 sources += [ | 305 sources += [ |
| 307 "common/nacl_paths.cc", | 306 "common/nacl_paths.cc", |
| 308 "common/nacl_paths.h", | 307 "common/nacl_paths.h", |
| 309 ] | 308 ] |
| 310 | 309 |
| 311 defines = [ "__STDC_LIMIT_MACROS=1" ] | 310 defines = [ "__STDC_LIMIT_MACROS=1" ] |
| 312 } | 311 } |
| 313 } | 312 } |
| OLD | NEW |