OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 { | 5 { |
6 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'sandbox_windows_target': 0, | 8 'sandbox_windows_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 'src/policy_engine_opcodes.cc', | 48 'src/policy_engine_opcodes.cc', |
49 'src/policy_engine_opcodes.h', | 49 'src/policy_engine_opcodes.h', |
50 'src/policy_engine_params.h', | 50 'src/policy_engine_params.h', |
51 'src/policy_engine_processor.cc', | 51 'src/policy_engine_processor.cc', |
52 'src/policy_engine_processor.h', | 52 'src/policy_engine_processor.h', |
53 'src/policy_low_level.cc', | 53 'src/policy_low_level.cc', |
54 'src/policy_low_level.h', | 54 'src/policy_low_level.h', |
55 'src/policy_params.h', | 55 'src/policy_params.h', |
56 'src/policy_target.cc', | 56 'src/policy_target.cc', |
57 'src/policy_target.h', | 57 'src/policy_target.h', |
| 58 'src/process_thread_dispatcher.cc', |
| 59 'src/process_thread_dispatcher.h', |
| 60 'src/process_thread_interception.cc', |
| 61 'src/process_thread_interception.h', |
58 'src/process_thread_policy.cc', | 62 'src/process_thread_policy.cc', |
59 'src/process_thread_policy.h', | 63 'src/process_thread_policy.h', |
60 'src/registry_policy.cc', | 64 'src/registry_policy.cc', |
61 'src/registry_policy.h', | 65 'src/registry_policy.h', |
62 'src/resolver.cc', | 66 'src/resolver.cc', |
63 'src/resolver.h', | 67 'src/resolver.h', |
64 'src/restricted_token_utils.cc', | 68 'src/restricted_token_utils.cc', |
65 'src/restricted_token_utils.h', | 69 'src/restricted_token_utils.h', |
66 'src/restricted_token.cc', | 70 'src/restricted_token.cc', |
67 'src/restricted_token.h', | 71 'src/restricted_token.h', |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 '../testing/gtest.gyp:gtest', | 208 '../testing/gtest.gyp:gtest', |
205 '../base/base.gyp:base', | 209 '../base/base.gyp:base', |
206 ], | 210 ], |
207 'msvs_guid': '881F6A97-D539-4C48-B401-DF04385B2343', | 211 'msvs_guid': '881F6A97-D539-4C48-B401-DF04385B2343', |
208 'sources': [ | 212 'sources': [ |
209 # Files that are used by the 32-bit version of Windows sandbox only. | 213 # Files that are used by the 32-bit version of Windows sandbox only. |
210 'src/filesystem_dispatcher.cc', | 214 'src/filesystem_dispatcher.cc', |
211 'src/filesystem_dispatcher.h', | 215 'src/filesystem_dispatcher.h', |
212 'src/filesystem_interception.cc', | 216 'src/filesystem_interception.cc', |
213 'src/filesystem_interception.h', | 217 'src/filesystem_interception.h', |
214 'src/process_thread_dispatcher.cc', | |
215 'src/process_thread_dispatcher.h', | |
216 'src/process_thread_interception.cc', | |
217 'src/process_thread_interception.h', | |
218 'src/registry_interception.cc', | 218 'src/registry_interception.cc', |
219 'src/registry_dispatcher.cc', | 219 'src/registry_dispatcher.cc', |
220 'src/registry_dispatcher.h', | 220 'src/registry_dispatcher.h', |
221 'src/registry_interception.h', | 221 'src/registry_interception.h', |
222 'src/resolver_32.cc', | 222 'src/resolver_32.cc', |
223 'src/service_resolver_32.cc', | 223 'src/service_resolver_32.cc', |
224 'src/sidestep_resolver.cc', | 224 'src/sidestep_resolver.cc', |
225 'src/sidestep_resolver.h', | 225 'src/sidestep_resolver.h', |
226 'src/sidestep\ia32_modrm_map.cpp', | 226 'src/sidestep\ia32_modrm_map.cpp', |
227 'src/sidestep\ia32_opcode_map.cpp', | 227 'src/sidestep\ia32_opcode_map.cpp', |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
407 ], | 407 ], |
408 }], | 408 }], |
409 ], | 409 ], |
410 } | 410 } |
411 | 411 |
412 # Local Variables: | 412 # Local Variables: |
413 # tab-width:2 | 413 # tab-width:2 |
414 # indent-tabs-mode:nil | 414 # indent-tabs-mode:nil |
415 # End: | 415 # End: |
416 # vim: set expandtab tabstop=2 shiftwidth=2: | 416 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |