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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 '../wtf/wtf_tests.gyp:wtf_unittest_helpers', | 73 '../wtf/wtf_tests.gyp:wtf_unittest_helpers', |
74 '<(DEPTH)/base/base.gyp:test_support_base', | 74 '<(DEPTH)/base/base.gyp:test_support_base', |
75 '<(DEPTH)/cc/cc.gyp:cc', | 75 '<(DEPTH)/cc/cc.gyp:cc', |
76 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support', | 76 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support', |
77 '<(DEPTH)/cc/blink/cc_blink.gyp:cc_blink', | 77 '<(DEPTH)/cc/blink/cc_blink.gyp:cc_blink', |
78 '<(DEPTH)/skia/skia.gyp:skia', | 78 '<(DEPTH)/skia/skia.gyp:skia', |
79 '<(DEPTH)/third_party/harfbuzz-ng/harfbuzz.gyp:harfbuzz-ng', | 79 '<(DEPTH)/third_party/harfbuzz-ng/harfbuzz.gyp:harfbuzz-ng', |
80 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 80 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
81 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 81 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
82 '<(DEPTH)/url/url.gyp:url_lib', | 82 '<(DEPTH)/url/url.gyp:url_lib', |
83 'blink_platform.gyp:blink_common', | |
84 'blink_platform.gyp:blink_platform', | 83 'blink_platform.gyp:blink_platform', |
85 ], | 84 ], |
86 'defines': [ | 85 'defines': [ |
87 'INSIDE_BLINK', | 86 'INSIDE_BLINK', |
88 ], | 87 ], |
89 'include_dirs': [ | 88 'include_dirs': [ |
90 '<(SHARED_INTERMEDIATE_DIR)/blink', | 89 '<(SHARED_INTERMEDIATE_DIR)/blink', |
91 ], | 90 ], |
92 'sources': [ | 91 'sources': [ |
93 'testing/RunAllTests.cpp', | 92 'testing/RunAllTests.cpp', |
94 '<@(platform_test_files)', | 93 '<@(platform_test_files)', |
95 ], | 94 ], |
96 'conditions': [ | 95 'conditions': [ |
97 ['OS=="android" and gtest_target_type == "shared_library"', { | 96 ['OS=="android" and gtest_target_type == "shared_library"', { |
98 'type': 'shared_library', | 97 'type': 'shared_library', |
99 'dependencies': [ | 98 'dependencies': [ |
100 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', | 99 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', |
101 '<(DEPTH)/tools/android/forwarder2/forwarder.gyp:forwarder2', | 100 '<(DEPTH)/tools/android/forwarder2/forwarder.gyp:forwarder2', |
102 ], | 101 ], |
103 }], | 102 }], |
104 ], | 103 ], |
105 }, | 104 }, |
106 { | 105 { |
107 'target_name': 'blink_platform_test_support', | 106 'target_name': 'blink_platform_test_support', |
108 'type': 'static_library', | 107 'type': 'static_library', |
109 'dependencies': [ | 108 'dependencies': [ |
110 '../config.gyp:config', | 109 '../config.gyp:config', |
111 '../wtf/wtf.gyp:wtf', | 110 '../wtf/wtf.gyp:wtf', |
| 111 'blink_platform.gyp:blink_common', |
112 'blink_platform.gyp:blink_platform', | 112 'blink_platform.gyp:blink_platform', |
113 '<(DEPTH)/testing/gmock.gyp:gmock', | 113 '<(DEPTH)/testing/gmock.gyp:gmock', |
114 ], | 114 ], |
115 'defines': [ | 115 'defines': [ |
116 'INSIDE_BLINK', | 116 'INSIDE_BLINK', |
117 ], | 117 ], |
118 'include_dirs': [ | 118 'include_dirs': [ |
119 '<(SHARED_INTERMEDIATE_DIR)/blink', | 119 '<(SHARED_INTERMEDIATE_DIR)/blink', |
120 ], | 120 ], |
121 'sources': [ | 121 'sources': [ |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 '../../../../build/isolate.gypi', | 211 '../../../../build/isolate.gypi', |
212 ], | 212 ], |
213 'sources': [ | 213 'sources': [ |
214 'blink_platform_unittests.isolate', | 214 'blink_platform_unittests.isolate', |
215 ], | 215 ], |
216 } | 216 } |
217 ], | 217 ], |
218 }], | 218 }], |
219 ], | 219 ], |
220 } | 220 } |
OLD | NEW |