| OLD | NEW |
| 1 # Copyright (c) 2011 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'variables': { | 10 'variables': { |
| 11 'sandbox_windows_target': 0, | 11 'sandbox_windows_target': 0, |
| (...skipping 18 matching lines...) Expand all Loading... |
| 30 'src/filesystem_dispatcher.cc', | 30 'src/filesystem_dispatcher.cc', |
| 31 'src/filesystem_dispatcher.h', | 31 'src/filesystem_dispatcher.h', |
| 32 'src/filesystem_interception.cc', | 32 'src/filesystem_interception.cc', |
| 33 'src/filesystem_interception.h', | 33 'src/filesystem_interception.h', |
| 34 'src/filesystem_policy.cc', | 34 'src/filesystem_policy.cc', |
| 35 'src/filesystem_policy.h', | 35 'src/filesystem_policy.h', |
| 36 'src/handle_closer.cc', | 36 'src/handle_closer.cc', |
| 37 'src/handle_closer.h', | 37 'src/handle_closer.h', |
| 38 'src/handle_closer_agent.cc', | 38 'src/handle_closer_agent.cc', |
| 39 'src/handle_closer_agent.h', | 39 'src/handle_closer_agent.h', |
| 40 'src/handle_dispatcher.cc', |
| 41 'src/handle_dispatcher.h', |
| 42 'src/handle_interception.cc', |
| 43 'src/handle_interception.h', |
| 44 'src/handle_policy.cc', |
| 45 'src/handle_policy.h', |
| 40 'src/handle_table.cc', | 46 'src/handle_table.cc', |
| 41 'src/handle_table.h', | 47 'src/handle_table.h', |
| 42 'src/interception.cc', | 48 'src/interception.cc', |
| 43 'src/interception.h', | 49 'src/interception.h', |
| 44 'src/interception_agent.cc', | 50 'src/interception_agent.cc', |
| 45 'src/interception_agent.h', | 51 'src/interception_agent.h', |
| 46 'src/interception_internal.h', | 52 'src/interception_internal.h', |
| 47 'src/interceptors.h', | 53 'src/interceptors.h', |
| 48 'src/internal_types.h', | 54 'src/internal_types.h', |
| 49 'src/ipc_tags.h', | 55 'src/ipc_tags.h', |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 '../testing/gtest.gyp:gtest', | 275 '../testing/gtest.gyp:gtest', |
| 270 ], | 276 ], |
| 271 'sources': [ | 277 'sources': [ |
| 272 'tests/common/controller.cc', | 278 'tests/common/controller.cc', |
| 273 'tests/common/controller.h', | 279 'tests/common/controller.h', |
| 274 'tests/common/test_utils.cc', | 280 'tests/common/test_utils.cc', |
| 275 'tests/common/test_utils.h', | 281 'tests/common/test_utils.h', |
| 276 'tests/integration_tests/integration_tests.cc', | 282 'tests/integration_tests/integration_tests.cc', |
| 277 'src/dep_test.cc', | 283 'src/dep_test.cc', |
| 278 'src/file_policy_test.cc', | 284 'src/file_policy_test.cc', |
| 285 'src/handle_policy_test.cc', |
| 279 'tests/integration_tests/integration_tests_test.cc', | 286 'tests/integration_tests/integration_tests_test.cc', |
| 280 'src/handle_closer_test.cc', | 287 'src/handle_closer_test.cc', |
| 281 'src/integrity_level_test.cc', | 288 'src/integrity_level_test.cc', |
| 282 'src/ipc_ping_test.cc', | 289 'src/ipc_ping_test.cc', |
| 283 'src/named_pipe_policy_test.cc', | 290 'src/named_pipe_policy_test.cc', |
| 284 'src/policy_target_test.cc', | 291 'src/policy_target_test.cc', |
| 285 'src/process_policy_test.cc', | 292 'src/process_policy_test.cc', |
| 286 'src/registry_policy_test.cc', | 293 'src/registry_policy_test.cc', |
| 287 'src/sync_policy_test.cc', | 294 'src/sync_policy_test.cc', |
| 288 'src/unload_dll_test.cc', | 295 'src/unload_dll_test.cc', |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 'POCDLL_EXPORTS', | 381 'POCDLL_EXPORTS', |
| 375 ], | 382 ], |
| 376 'include_dirs': [ | 383 'include_dirs': [ |
| 377 '..', | 384 '..', |
| 378 ], | 385 ], |
| 379 }, | 386 }, |
| 380 ], | 387 ], |
| 381 }], | 388 }], |
| 382 ], | 389 ], |
| 383 } | 390 } |
| OLD | NEW |