| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 # This needs to be a static library rather than a sources set because small | 7 # This needs to be a static library rather than a sources set because small |
| 8 # portions of this are used in some contexts (like chrome_elf), and it | 8 # portions of this are used in some contexts (like chrome_elf), and it |
| 9 # doesnn't seem to dead-code strip very well. This saves 12K on chrome_elf.dll, | 9 # doesnn't seem to dead-code strip very well. This saves 12K on chrome_elf.dll, |
| 10 # over a source set, for example. | 10 # over a source set, for example. |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 "tests/common/test_utils.h", | 206 "tests/common/test_utils.h", |
| 207 "tests/integration_tests/integration_tests.cc", | 207 "tests/integration_tests/integration_tests.cc", |
| 208 "tests/integration_tests/integration_tests_test.cc", | 208 "tests/integration_tests/integration_tests_test.cc", |
| 209 ] | 209 ] |
| 210 | 210 |
| 211 deps = [ | 211 deps = [ |
| 212 ":sandbox", | 212 ":sandbox", |
| 213 "//base/test:test_support", | 213 "//base/test:test_support", |
| 214 "//testing/gtest", | 214 "//testing/gtest", |
| 215 ] | 215 ] |
| 216 |
| 217 libs = [ "dxva2.lib" ] |
| 216 } | 218 } |
| 217 | 219 |
| 218 test("sbox_validation_tests") { | 220 test("sbox_validation_tests") { |
| 219 sources = [ | 221 sources = [ |
| 220 "tests/common/controller.cc", | 222 "tests/common/controller.cc", |
| 221 "tests/common/controller.h", | 223 "tests/common/controller.h", |
| 222 "tests/validation_tests/commands.cc", | 224 "tests/validation_tests/commands.cc", |
| 223 "tests/validation_tests/commands.h", | 225 "tests/validation_tests/commands.h", |
| 224 "tests/validation_tests/suite.cc", | 226 "tests/validation_tests/suite.cc", |
| 225 "tests/validation_tests/unit_tests.cc", | 227 "tests/validation_tests/unit_tests.cc", |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 "sandbox_poc/pocdll/spyware.cc", | 297 "sandbox_poc/pocdll/spyware.cc", |
| 296 "sandbox_poc/pocdll/utils.h", | 298 "sandbox_poc/pocdll/utils.h", |
| 297 ] | 299 ] |
| 298 | 300 |
| 299 defines = [ "POCDLL_EXPORTS" ] | 301 defines = [ "POCDLL_EXPORTS" ] |
| 300 | 302 |
| 301 deps = [ | 303 deps = [ |
| 302 "//build/config/sanitizers:deps", | 304 "//build/config/sanitizers:deps", |
| 303 ] | 305 ] |
| 304 } | 306 } |
| OLD | NEW |