OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'target_arch%': 'ia32', | 9 'target_arch%': 'ia32', |
10 }, | 10 }, |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 'src/policy_engine_params.h', | 67 'src/policy_engine_params.h', |
68 'src/policy_engine_processor.cc', | 68 'src/policy_engine_processor.cc', |
69 'src/policy_engine_processor.h', | 69 'src/policy_engine_processor.h', |
70 'src/policy_low_level.cc', | 70 'src/policy_low_level.cc', |
71 'src/policy_low_level.h', | 71 'src/policy_low_level.h', |
72 'src/policy_params.h', | 72 'src/policy_params.h', |
73 'src/policy_target.cc', | 73 'src/policy_target.cc', |
74 'src/policy_target.h', | 74 'src/policy_target.h', |
75 'src/process_mitigations.cc', | 75 'src/process_mitigations.cc', |
76 'src/process_mitigations.h', | 76 'src/process_mitigations.h', |
| 77 'src/process_mitigations_win32k_dispatcher.cc', |
| 78 'src/process_mitigations_win32k_dispatcher.h', |
| 79 'src/process_mitigations_win32k_interception.cc', |
| 80 'src/process_mitigations_win32k_interception.h', |
| 81 'src/process_mitigations_win32k_policy.cc', |
| 82 'src/process_mitigations_win32k_policy.h', |
77 'src/process_thread_dispatcher.cc', | 83 'src/process_thread_dispatcher.cc', |
78 'src/process_thread_dispatcher.h', | 84 'src/process_thread_dispatcher.h', |
79 'src/process_thread_interception.cc', | 85 'src/process_thread_interception.cc', |
80 'src/process_thread_interception.h', | 86 'src/process_thread_interception.h', |
81 'src/process_thread_policy.cc', | 87 'src/process_thread_policy.cc', |
82 'src/process_thread_policy.h', | 88 'src/process_thread_policy.h', |
83 'src/registry_dispatcher.cc', | 89 'src/registry_dispatcher.cc', |
84 'src/registry_dispatcher.h', | 90 'src/registry_dispatcher.h', |
85 'src/registry_interception.cc', | 91 'src/registry_interception.cc', |
86 'src/registry_interception.h', | 92 'src/registry_interception.h', |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 ], | 363 ], |
358 }, | 364 }, |
359 'defines': [ | 365 'defines': [ |
360 '<@(nacl_win64_defines)', | 366 '<@(nacl_win64_defines)', |
361 ] | 367 ] |
362 }, | 368 }, |
363 ], | 369 ], |
364 }], | 370 }], |
365 ], | 371 ], |
366 } | 372 } |
OLD | NEW |