Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: sandbox/win/BUILD.gn

Issue 1856993003: Implement sandbox hooks to forward OPM related GDI system calls. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed header Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | sandbox/win/sandbox_win.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | sandbox/win/sandbox_win.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698