| OLD | NEW |
| 1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
| 4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
| 5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
| 8 { | 8 { |
| 9 'includes': [ | 9 'includes': [ |
| 10 '../build/common.gypi', | 10 '../build/common.gypi', |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 }], | 62 }], |
| 63 ], | 63 ], |
| 64 'dependencies': [ | 64 'dependencies': [ |
| 65 '<(DEPTH)/testing/gmock.gyp:gmock', | 65 '<(DEPTH)/testing/gmock.gyp:gmock', |
| 66 '<(DEPTH)/testing/gtest.gyp:gtest', | 66 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 67 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 67 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
| 68 '<(webrtc_root)/base/base.gyp:rtc_base', | 68 '<(webrtc_root)/base/base.gyp:rtc_base', |
| 69 '<(webrtc_root)/common.gyp:webrtc_common', | 69 '<(webrtc_root)/common.gyp:webrtc_common', |
| 70 '<(webrtc_root)/modules/modules.gyp:media_file', | 70 '<(webrtc_root)/modules/modules.gyp:media_file', |
| 71 '<(webrtc_root)/modules/modules.gyp:video_render', | 71 '<(webrtc_root)/modules/modules.gyp:video_render', |
| 72 '<(webrtc_root)/test/test.gyp:fake_video_frames', | 72 '<(webrtc_root)/test/test.gyp:video_test_common', |
| 73 '<(webrtc_root)/test/test.gyp:test_support', | 73 '<(webrtc_root)/test/test.gyp:test_support', |
| 74 '<(webrtc_root)/test/test.gyp:rtp_test_utils', | 74 '<(webrtc_root)/test/test.gyp:rtp_test_utils', |
| 75 '<(webrtc_root)/webrtc.gyp:webrtc', | 75 '<(webrtc_root)/webrtc.gyp:webrtc', |
| 76 ], | 76 ], |
| 77 }, | 77 }, |
| 78 { | 78 { |
| 79 'target_name': 'webrtc_test_renderer', | 79 'target_name': 'webrtc_test_renderer', |
| 80 'type': 'static_library', | 80 'type': 'static_library', |
| 81 'sources': [ | 81 'sources': [ |
| 82 'gl/gl_renderer.cc', | 82 'gl/gl_renderer.cc', |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 '-Wno-comment', | 127 '-Wno-comment', |
| 128 '-Wno-delete-non-virtual-dtor', | 128 '-Wno-delete-non-virtual-dtor', |
| 129 ], | 129 ], |
| 130 }, | 130 }, |
| 131 }, | 131 }, |
| 132 }], | 132 }], |
| 133 ], | 133 ], |
| 134 'dependencies': [ | 134 'dependencies': [ |
| 135 '<(DEPTH)/testing/gtest.gyp:gtest', | 135 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 136 '<(webrtc_root)/modules/modules.gyp:media_file', | 136 '<(webrtc_root)/modules/modules.gyp:media_file', |
| 137 '<(webrtc_root)/test/test.gyp:fake_video_frames', | 137 '<(webrtc_root)/test/test.gyp:video_test_common', |
| 138 '<(webrtc_root)/test/test.gyp:test_support', | 138 '<(webrtc_root)/test/test.gyp:test_support', |
| 139 ], | 139 ], |
| 140 'direct_dependent_settings': { | 140 'direct_dependent_settings': { |
| 141 'conditions': [ | 141 'conditions': [ |
| 142 ['OS=="linux"', { | 142 ['OS=="linux"', { |
| 143 'libraries': [ | 143 'libraries': [ |
| 144 '-lXext', | 144 '-lXext', |
| 145 '-lX11', | 145 '-lX11', |
| 146 '-lGL', | 146 '-lGL', |
| 147 ], | 147 ], |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 'fake_network_pipe_unittest.cc', | 181 'fake_network_pipe_unittest.cc', |
| 182 'frame_generator_unittest.cc', | 182 'frame_generator_unittest.cc', |
| 183 'rtp_file_reader_unittest.cc', | 183 'rtp_file_reader_unittest.cc', |
| 184 'rtp_file_writer_unittest.cc', | 184 'rtp_file_writer_unittest.cc', |
| 185 ], | 185 ], |
| 186 }, | 186 }, |
| 187 ], #targets | 187 ], #targets |
| 188 }], # include_tests | 188 }], # include_tests |
| 189 ], # conditions | 189 ], # conditions |
| 190 } | 190 } |
| OLD | NEW |