OLD | NEW |
1 # | 1 # |
2 # Copyright (C) 2013 Google Inc. All rights reserved. | 2 # Copyright (C) 2013 Google Inc. All rights reserved. |
3 # | 3 # |
4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
6 # met: | 6 # met: |
7 # | 7 # |
8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
(...skipping 15 matching lines...) Expand all Loading... |
26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 # | 29 # |
30 { | 30 { |
31 'includes': [ | 31 'includes': [ |
32 '../build/win/precompile.gypi', | 32 '../build/win/precompile.gypi', |
33 'blink_platform.gypi', | 33 'blink_platform.gypi', |
34 ], | 34 ], |
35 'targets': [{ | 35 'targets': [{ |
| 36 'target_name': 'blink_platform_unittests_support', |
| 37 'type': 'static_library', |
| 38 'dependencies': [ |
| 39 'blink_platform.gyp:blink_platform', |
| 40 '../config.gyp:unittest_config', |
| 41 '../wtf/wtf.gyp:wtf', |
| 42 '../wtf/wtf_tests.gyp:run_all_tests', |
| 43 '../wtf/wtf_tests.gyp:wtf_unittest_helpers', |
| 44 ], |
| 45 'include_dirs': [ |
| 46 '<(SHARED_INTERMEDIATE_DIR)/blink', |
| 47 ], |
| 48 'sources': [ |
| 49 '<@(platform_test_support_files)', |
| 50 ], |
| 51 }, { |
36 'target_name': 'blink_platform_unittests', | 52 'target_name': 'blink_platform_unittests', |
37 'type': 'executable', | 53 'type': 'executable', |
38 'dependencies': [ | 54 'dependencies': [ |
39 '../config.gyp:unittest_config', | 55 '../config.gyp:unittest_config', |
40 '../wtf/wtf.gyp:wtf', | 56 '../wtf/wtf.gyp:wtf', |
41 '../wtf/wtf_tests.gyp:run_all_tests', | 57 '../wtf/wtf_tests.gyp:run_all_tests', |
42 '../wtf/wtf_tests.gyp:wtf_unittest_helpers', | 58 '../wtf/wtf_tests.gyp:wtf_unittest_helpers', |
43 'blink_platform.gyp:blink_platform', | 59 'blink_platform.gyp:blink_platform', |
44 'blink_platform.gyp:blink_common', | 60 'blink_platform.gyp:blink_common', |
45 '<(DEPTH)/skia/skia.gyp:skia', | 61 '<(DEPTH)/skia/skia.gyp:skia', |
(...skipping 11 matching lines...) Expand all Loading... |
57 'conditions': [ | 73 'conditions': [ |
58 ['os_posix==1 and OS!="mac" and OS!="android" and OS!="ios" and linux_use_
tcmalloc==1', { | 74 ['os_posix==1 and OS!="mac" and OS!="android" and OS!="ios" and linux_use_
tcmalloc==1', { |
59 'dependencies': [ | 75 'dependencies': [ |
60 '<(DEPTH)/base/base.gyp:base', | 76 '<(DEPTH)/base/base.gyp:base', |
61 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 77 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
62 ] | 78 ] |
63 }], | 79 }], |
64 ] | 80 ] |
65 }], | 81 }], |
66 } | 82 } |
OLD | NEW |