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

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

Issue 774353003: gn format // (the rest) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase net Created 6 years 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 | « sandbox/mac/BUILD.gn ('k') | sdch/BUILD.gn » ('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 source_set("sandbox") { 5 source_set("sandbox") {
6 sources = [ 6 sources = [
7 "src/acl.cc", 7 "src/acl.cc",
8 "src/acl.h", 8 "src/acl.h",
9 "src/app_container.cc", 9 "src/app_container.cc",
10 "src/app_container.h", 10 "src/app_container.h",
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 "src/target_services.cc", 120 "src/target_services.cc",
121 "src/target_services.h", 121 "src/target_services.h",
122 "src/win_utils.cc", 122 "src/win_utils.cc",
123 "src/win_utils.h", 123 "src/win_utils.h",
124 "src/win2k_threadpool.cc", 124 "src/win2k_threadpool.cc",
125 "src/win2k_threadpool.h", 125 "src/win2k_threadpool.h",
126 "src/window.cc", 126 "src/window.cc",
127 "src/window.h", 127 "src/window.h",
128 ] 128 ]
129 129
130 if (cpu_arch == "x64" ){ 130 if (cpu_arch == "x64") {
131 sources += [ 131 sources += [
132 "src/interceptors_64.cc", 132 "src/interceptors_64.cc",
133 "src/interceptors_64.h", 133 "src/interceptors_64.h",
134 "src/resolver_64.cc", 134 "src/resolver_64.cc",
135 "src/service_resolver_64.cc", 135 "src/service_resolver_64.cc",
136 "src/Wow64_64.cc", 136 "src/Wow64_64.cc",
137 ] 137 ]
138 } else if (cpu_arch == "x86") { 138 } else if (cpu_arch == "x86") {
139 sources += [ 139 sources += [
140 "src/resolver_32.cc", 140 "src/resolver_32.cc",
(...skipping 21 matching lines...) Expand all
162 if (cpu_arch == "x86") { 162 if (cpu_arch == "x86") {
163 # Make a target that copies the wow_helper files to the out dir. 163 # Make a target that copies the wow_helper files to the out dir.
164 # 164 #
165 # TODO(brettw) we can probably just build this now that we have proper 165 # TODO(brettw) we can probably just build this now that we have proper
166 # toolchain support. 166 # toolchain support.
167 copy("copy_wow_helper") { 167 copy("copy_wow_helper") {
168 sources = [ 168 sources = [
169 "wow_helper/wow_helper.exe", 169 "wow_helper/wow_helper.exe",
170 "wow_helper/wow_helper.pdb", 170 "wow_helper/wow_helper.pdb",
171 ] 171 ]
172 outputs = [ "$root_out_dir/{{source_file_part}}" ] 172 outputs = [
173 "$root_out_dir/{{source_file_part}}",
174 ]
173 } 175 }
174 } 176 }
175 177
176 test("sbox_integration_tests") { 178 test("sbox_integration_tests") {
177 sources = [ 179 sources = [
178 "src/app_container_test.cc", 180 "src/app_container_test.cc",
179 "src/file_policy_test.cc", 181 "src/file_policy_test.cc",
180 "src/handle_inheritance_test.cc", 182 "src/handle_inheritance_test.cc",
181 "src/handle_policy_test.cc", 183 "src/handle_policy_test.cc",
182 "tests/integration_tests/integration_tests_test.cc", 184 "tests/integration_tests/integration_tests_test.cc",
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 "sandbox_poc/pocdll/network.cc", 278 "sandbox_poc/pocdll/network.cc",
277 "sandbox_poc/pocdll/pocdll.cc", 279 "sandbox_poc/pocdll/pocdll.cc",
278 "sandbox_poc/pocdll/processes_and_threads.cc", 280 "sandbox_poc/pocdll/processes_and_threads.cc",
279 "sandbox_poc/pocdll/registry.cc", 281 "sandbox_poc/pocdll/registry.cc",
280 "sandbox_poc/pocdll/spyware.cc", 282 "sandbox_poc/pocdll/spyware.cc",
281 "sandbox_poc/pocdll/utils.h", 283 "sandbox_poc/pocdll/utils.h",
282 ] 284 ]
283 285
284 defines = [ "POCDLL_EXPORTS" ] 286 defines = [ "POCDLL_EXPORTS" ]
285 } 287 }
OLDNEW
« no previous file with comments | « sandbox/mac/BUILD.gn ('k') | sdch/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698