OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'layouttest_support_content', | 8 'target_name': 'layouttest_support_content', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'conditions': [ | 10 'conditions': [ |
11 ['OS=="android"', { | 11 ['OS=="android"', { |
12 'dependencies': [ | 12 'dependencies': [ |
13 'test_support_content_jni_headers', | 13 'test_support_content_jni_headers', |
14 ], | 14 ], |
15 }], | 15 }], |
16 ['OS!="ios"', { | 16 ['OS!="ios"', { |
17 # layouttest_support_content is not supported nor required on iOS. | 17 # layouttest_support_content is not supported nor required on iOS. |
18 'dependencies': [ | 18 'dependencies': [ |
19 '../skia/skia.gyp:skia', | 19 '../skia/skia.gyp:skia', |
20 '../v8/tools/gyp/v8.gyp:v8', | 20 '../v8/tools/gyp/v8.gyp:v8', |
21 '../webkit/common/webkit_common.gyp:webkit_common', | 21 '../webkit/common/webkit_common.gyp:webkit_common', |
22 ], | 22 ], |
23 'include_dirs': [ | 23 'include_dirs': [ |
24 '..', | 24 '..', |
| 25 '<(SHARED_INTERMEDIATE_DIR)', |
25 ], | 26 ], |
26 'sources': [ | 27 'sources': [ |
27 'public/test/layouttest_support.h', | 28 'public/test/layouttest_support.h', |
28 'public/test/nested_message_pump_android.cc', | 29 'public/test/nested_message_pump_android.cc', |
29 'public/test/nested_message_pump_android.h', | 30 'public/test/nested_message_pump_android.h', |
30 'test/layouttest_support.cc', | 31 'test/layouttest_support.cc', |
31 'test/mock_webclipboard_impl.cc', | 32 'test/mock_webclipboard_impl.cc', |
32 'test/mock_webclipboard_impl.h', | 33 'test/mock_webclipboard_impl.h', |
33 'test/test_media_stream_client.cc', | 34 'test/test_media_stream_client.cc', |
34 'test/test_media_stream_client.h', | 35 'test/test_media_stream_client.h', |
(...skipping 1758 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1793 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], | 1794 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], |
1794 }, | 1795 }, |
1795 ], | 1796 ], |
1796 }], | 1797 }], |
1797 ], | 1798 ], |
1798 }, | 1799 }, |
1799 ], | 1800 ], |
1800 }], | 1801 }], |
1801 ], | 1802 ], |
1802 } | 1803 } |
OLD | NEW |