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