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': [ |
(...skipping 12 matching lines...) Expand all Loading... |
23 ], | 23 ], |
24 'include_dirs': [ | 24 'include_dirs': [ |
25 '..', | 25 '..', |
26 '<(SHARED_INTERMEDIATE_DIR)', | 26 '<(SHARED_INTERMEDIATE_DIR)', |
27 ], | 27 ], |
28 'sources': [ | 28 'sources': [ |
29 'public/test/layouttest_support.h', | 29 'public/test/layouttest_support.h', |
30 'public/test/nested_message_pump_android.cc', | 30 'public/test/nested_message_pump_android.cc', |
31 'public/test/nested_message_pump_android.h', | 31 'public/test/nested_message_pump_android.h', |
32 'test/layouttest_support.cc', | 32 'test/layouttest_support.cc', |
33 'test/test_media_stream_renderer_factory.cc', | |
34 'test/test_media_stream_renderer_factory.h', | |
35 'test/test_video_frame_provider.cc', | 33 'test/test_video_frame_provider.cc', |
36 'test/test_video_frame_provider.h', | 34 'test/test_video_frame_provider.h', |
37 ], | 35 ], |
| 36 'conditions':[ |
| 37 ['enable_webrtc==1', { |
| 38 'sources': [ |
| 39 'test/test_media_stream_renderer_factory.cc', |
| 40 'test/test_media_stream_renderer_factory.h', |
| 41 ], |
| 42 }], |
| 43 ], |
38 }], | 44 }], |
39 ], | 45 ], |
40 }, | 46 }, |
41 { | 47 { |
42 'target_name': 'test_support_content', | 48 'target_name': 'test_support_content', |
43 'type': 'static_library', | 49 'type': 'static_library', |
44 'dependencies': [ | 50 'dependencies': [ |
45 '../net/net.gyp:net_test_support', | 51 '../net/net.gyp:net_test_support', |
46 '../skia/skia.gyp:skia', | 52 '../skia/skia.gyp:skia', |
47 '../testing/gmock.gyp:gmock', | 53 '../testing/gmock.gyp:gmock', |
(...skipping 1770 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1818 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], | 1824 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], |
1819 }, | 1825 }, |
1820 ], | 1826 ], |
1821 }], | 1827 }], |
1822 ], | 1828 ], |
1823 }, | 1829 }, |
1824 ], | 1830 ], |
1825 }], | 1831 }], |
1826 ], | 1832 ], |
1827 } | 1833 } |
OLD | NEW |