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 22 matching lines...) Expand all Loading... |
33 'blink_platform.gypi', | 33 'blink_platform.gypi', |
34 'heap/blink_heap.gypi', | 34 'heap/blink_heap.gypi', |
35 ], | 35 ], |
36 'targets': [ | 36 'targets': [ |
37 { | 37 { |
38 'target_name': 'blink_heap_unittests', | 38 'target_name': 'blink_heap_unittests', |
39 'type': 'executable', | 39 'type': 'executable', |
40 'dependencies': [ | 40 'dependencies': [ |
41 '../config.gyp:unittest_config', | 41 '../config.gyp:unittest_config', |
42 '../wtf/wtf.gyp:wtf', | 42 '../wtf/wtf.gyp:wtf', |
43 '../wtf/wtf_tests.gyp:wtf_unittest_helpers', | |
44 '<(DEPTH)/base/base.gyp:test_support_base', | 43 '<(DEPTH)/base/base.gyp:test_support_base', |
45 '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content', | 44 '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content', |
46 'blink_platform.gyp:blink_platform', | 45 'blink_platform.gyp:blink_platform', |
47 'blink_platform_test_support', | 46 'blink_platform_test_support', |
48 ], | 47 ], |
49 'defines': [ | 48 'defines': [ |
50 'INSIDE_BLINK', | 49 'INSIDE_BLINK', |
51 ], | 50 ], |
52 'sources': [ | 51 'sources': [ |
53 'heap/RunAllTests.cpp', | 52 'heap/RunAllTests.cpp', |
54 '<@(platform_heap_test_files)', | 53 '<@(platform_heap_test_files)', |
55 ], | 54 ], |
56 'conditions': [ | 55 'conditions': [ |
57 ['OS=="android"', { | 56 ['OS=="android"', { |
58 'type': 'shared_library', | 57 'type': 'shared_library', |
59 'dependencies': [ | 58 'dependencies': [ |
60 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', | 59 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', |
61 '<(DEPTH)/tools/android/forwarder2/forwarder.gyp:forwarder2', | 60 '<(DEPTH)/tools/android/forwarder2/forwarder.gyp:forwarder2', |
62 ], | 61 ], |
63 }], | 62 }], |
64 ], | 63 ], |
65 }, | 64 }, |
66 { | 65 { |
67 'target_name': 'blink_platform_unittests', | 66 'target_name': 'blink_platform_unittests', |
68 'type': 'executable', | 67 'type': 'executable', |
69 'dependencies': [ | 68 'dependencies': [ |
70 'blink_platform_test_support', | 69 'blink_platform_test_support', |
71 '../config.gyp:unittest_config', | 70 '../config.gyp:unittest_config', |
72 '../wtf/wtf.gyp:wtf', | 71 '../wtf/wtf.gyp:wtf', |
73 '../wtf/wtf_tests.gyp:wtf_unittest_helpers', | |
74 '<(DEPTH)/base/base.gyp:test_support_base', | 72 '<(DEPTH)/base/base.gyp:test_support_base', |
75 '<(DEPTH)/cc/cc.gyp:cc', | 73 '<(DEPTH)/cc/cc.gyp:cc', |
76 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support', | 74 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support', |
77 '<(DEPTH)/cc/blink/cc_blink.gyp:cc_blink', | 75 '<(DEPTH)/cc/blink/cc_blink.gyp:cc_blink', |
78 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_common_test_support', | 76 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_common_test_support', |
79 '<(DEPTH)/mojo/mojo_edk_tests.gyp:mojo_public_bindings_for_blink_tests', | 77 '<(DEPTH)/mojo/mojo_edk_tests.gyp:mojo_public_bindings_for_blink_tests', |
80 '<(DEPTH)/skia/skia.gyp:skia', | 78 '<(DEPTH)/skia/skia.gyp:skia', |
81 '<(DEPTH)/third_party/harfbuzz-ng/harfbuzz.gyp:harfbuzz-ng', | 79 '<(DEPTH)/third_party/harfbuzz-ng/harfbuzz.gyp:harfbuzz-ng', |
82 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 80 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
83 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 81 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 '../../../../build/isolate.gypi', | 226 '../../../../build/isolate.gypi', |
229 ], | 227 ], |
230 'sources': [ | 228 'sources': [ |
231 'blink_platform_unittests.isolate', | 229 'blink_platform_unittests.isolate', |
232 ], | 230 ], |
233 } | 231 } |
234 ], | 232 ], |
235 }], | 233 }], |
236 ], | 234 ], |
237 } | 235 } |
OLD | NEW |