| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 }], | 60 }], |
| 61 ], | 61 ], |
| 62 'dependencies': [ | 62 'dependencies': [ |
| 63 '<(DEPTH)/testing/gmock.gyp:gmock', | 63 '<(DEPTH)/testing/gmock.gyp:gmock', |
| 64 '<(DEPTH)/testing/gtest.gyp:gtest', | 64 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 65 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 65 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
| 66 '<(webrtc_root)/base/base.gyp:rtc_base', | 66 '<(webrtc_root)/base/base.gyp:rtc_base', |
| 67 '<(webrtc_root)/common.gyp:webrtc_common', | 67 '<(webrtc_root)/common.gyp:webrtc_common', |
| 68 '<(webrtc_root)/modules/modules.gyp:media_file', | 68 '<(webrtc_root)/modules/modules.gyp:media_file', |
| 69 '<(webrtc_root)/modules/modules.gyp:video_render', | 69 '<(webrtc_root)/modules/modules.gyp:video_render', |
| 70 '<(webrtc_root)/test/test.gyp:fake_video_frames', | 70 '<(webrtc_root)/test/test.gyp:video_test_common', |
| 71 '<(webrtc_root)/test/test.gyp:test_support', | 71 '<(webrtc_root)/test/test.gyp:test_support', |
| 72 '<(webrtc_root)/test/test.gyp:rtp_test_utils', | 72 '<(webrtc_root)/test/test.gyp:rtp_test_utils', |
| 73 '<(webrtc_root)/webrtc.gyp:webrtc', | 73 '<(webrtc_root)/webrtc.gyp:webrtc', |
| 74 ], | 74 ], |
| 75 }, | 75 }, |
| 76 { | 76 { |
| 77 'target_name': 'webrtc_test_renderer', | 77 'target_name': 'webrtc_test_renderer', |
| 78 'type': 'static_library', | 78 'type': 'static_library', |
| 79 'sources': [ | 79 'sources': [ |
| 80 'gl/gl_renderer.cc', | 80 'gl/gl_renderer.cc', |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 '-Wno-comment', | 125 '-Wno-comment', |
| 126 '-Wno-delete-non-virtual-dtor', | 126 '-Wno-delete-non-virtual-dtor', |
| 127 ], | 127 ], |
| 128 }, | 128 }, |
| 129 }, | 129 }, |
| 130 }], | 130 }], |
| 131 ], | 131 ], |
| 132 'dependencies': [ | 132 'dependencies': [ |
| 133 '<(DEPTH)/testing/gtest.gyp:gtest', | 133 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 134 '<(webrtc_root)/modules/modules.gyp:media_file', | 134 '<(webrtc_root)/modules/modules.gyp:media_file', |
| 135 '<(webrtc_root)/test/test.gyp:fake_video_frames', | 135 '<(webrtc_root)/test/test.gyp:video_test_common', |
| 136 '<(webrtc_root)/test/test.gyp:test_support', | 136 '<(webrtc_root)/test/test.gyp:test_support', |
| 137 ], | 137 ], |
| 138 'direct_dependent_settings': { | 138 'direct_dependent_settings': { |
| 139 'conditions': [ | 139 'conditions': [ |
| 140 ['OS=="linux"', { | 140 ['OS=="linux"', { |
| 141 'libraries': [ | 141 'libraries': [ |
| 142 '-lXext', | 142 '-lXext', |
| 143 '-lX11', | 143 '-lX11', |
| 144 '-lGL', | 144 '-lGL', |
| 145 ], | 145 ], |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 'fake_network_pipe_unittest.cc', | 179 'fake_network_pipe_unittest.cc', |
| 180 'frame_generator_unittest.cc', | 180 'frame_generator_unittest.cc', |
| 181 'rtp_file_reader_unittest.cc', | 181 'rtp_file_reader_unittest.cc', |
| 182 'rtp_file_writer_unittest.cc', | 182 'rtp_file_writer_unittest.cc', |
| 183 ], | 183 ], |
| 184 }, | 184 }, |
| 185 ], #targets | 185 ], #targets |
| 186 }], # include_tests | 186 }], # include_tests |
| 187 ], # conditions | 187 ], # conditions |
| 188 } | 188 } |
| OLD | NEW |