Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2015 The Crashpad Authors. All rights reserved. | |
| 2 # | |
| 3 # Licensed under the Apache License, Version 2.0 (the "License"); | |
| 4 # you may not use this file except in compliance with the License. | |
| 5 # You may obtain a copy of the License at | |
| 6 # | |
| 7 # http://www.apache.org/licenses/LICENSE-2.0 | |
| 8 # | |
| 9 # Unless required by applicable law or agreed to in writing, software | |
| 10 # distributed under the License is distributed on an "AS IS" BASIS, | |
| 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| 12 # See the License for the specific language governing permissions and | |
| 13 # limitations under the License. | |
| 14 | |
| 15 { | |
| 16 'includes': [ | |
| 17 '../build/crashpad.gypi', | |
| 18 ], | |
| 19 'targets': [], | |
| 20 'conditions': [ | |
| 21 ['OS=="win"', { | |
| 22 'targets': [ | |
| 23 { | |
| 24 'target_name': 'crashpad_handler_test', | |
| 25 'type': 'executable', | |
| 26 'dependencies': [ | |
| 27 'handler.gyp:crashpad_handler', | |
| 28 '../compat/compat.gyp:crashpad_compat', | |
| 29 '../test/test.gyp:crashpad_test', | |
| 30 '../third_party/gtest/gtest.gyp:gtest', | |
| 31 '../third_party/gtest/gtest.gyp:gtest_main', | |
| 32 '../third_party/mini_chromium/mini_chromium.gyp:base', | |
| 33 '../util/util.gyp:crashpad_util', | |
| 34 ], | |
| 35 'include_dirs': [ | |
| 36 '..', | |
| 37 ], | |
| 38 'sources': [ | |
| 39 'win/registration_pipe_state_test.cc', | |
| 40 'win/registration_test_base.cc', | |
| 41 'win/registration_test_base.h', | |
|
scottmg
2015/05/25 18:41:54
sort
erikwright (departed)
2015/05/25 19:42:12
Done.
| |
| 42 'win/registration_server_test.cc', | |
| 43 ], | |
| 44 }, | |
| 45 ], | |
| 46 }], | |
| 47 ], | |
| 48 } | |
| OLD | NEW |