| 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 source_set("sandbox") { | 7 source_set("sandbox") { |
| 8 sources = [ | 8 sources = [ |
| 9 "src/acl.cc", | 9 "src/acl.cc", |
| 10 "src/acl.h", | 10 "src/acl.h", |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 "src/sync_interception.cc", | 118 "src/sync_interception.cc", |
| 119 "src/sync_interception.h", | 119 "src/sync_interception.h", |
| 120 "src/sync_policy.cc", | 120 "src/sync_policy.cc", |
| 121 "src/sync_policy.h", | 121 "src/sync_policy.h", |
| 122 "src/target_interceptions.cc", | 122 "src/target_interceptions.cc", |
| 123 "src/target_interceptions.h", | 123 "src/target_interceptions.h", |
| 124 "src/target_process.cc", | 124 "src/target_process.cc", |
| 125 "src/target_process.h", | 125 "src/target_process.h", |
| 126 "src/target_services.cc", | 126 "src/target_services.cc", |
| 127 "src/target_services.h", | 127 "src/target_services.h", |
| 128 "src/top_level_dispatcher.cc", |
| 129 "src/top_level_dispatcher.h", |
| 128 "src/win2k_threadpool.cc", | 130 "src/win2k_threadpool.cc", |
| 129 "src/win2k_threadpool.h", | 131 "src/win2k_threadpool.h", |
| 130 "src/win_utils.cc", | 132 "src/win_utils.cc", |
| 131 "src/win_utils.h", | 133 "src/win_utils.h", |
| 132 "src/window.cc", | 134 "src/window.cc", |
| 133 "src/window.h", | 135 "src/window.h", |
| 134 ] | 136 ] |
| 135 | 137 |
| 136 if (current_cpu == "x64") { | 138 if (current_cpu == "x64") { |
| 137 sources += [ | 139 sources += [ |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 "sandbox_poc/pocdll/spyware.cc", | 301 "sandbox_poc/pocdll/spyware.cc", |
| 300 "sandbox_poc/pocdll/utils.h", | 302 "sandbox_poc/pocdll/utils.h", |
| 301 ] | 303 ] |
| 302 | 304 |
| 303 defines = [ "POCDLL_EXPORTS" ] | 305 defines = [ "POCDLL_EXPORTS" ] |
| 304 | 306 |
| 305 deps = [ | 307 deps = [ |
| 306 "//build/config/sanitizers:deps", | 308 "//build/config/sanitizers:deps", |
| 307 ] | 309 ] |
| 308 } | 310 } |
| OLD | NEW |