| OLD | NEW |
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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 import("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 "h264/sps_parser.h", | 27 "h264/sps_parser.h", |
| 28 "h264/sps_vui_rewriter.cc", | 28 "h264/sps_vui_rewriter.cc", |
| 29 "h264/sps_vui_rewriter.h", | 29 "h264/sps_vui_rewriter.h", |
| 30 "i420_buffer_pool.cc", | 30 "i420_buffer_pool.cc", |
| 31 "include/bitrate_adjuster.h", | 31 "include/bitrate_adjuster.h", |
| 32 "include/frame_callback.h", | 32 "include/frame_callback.h", |
| 33 "include/i420_buffer_pool.h", | 33 "include/i420_buffer_pool.h", |
| 34 "include/incoming_video_stream.h", | 34 "include/incoming_video_stream.h", |
| 35 "include/video_frame_buffer.h", | 35 "include/video_frame_buffer.h", |
| 36 "incoming_video_stream.cc", | 36 "incoming_video_stream.cc", |
| 37 "libyuv/include/scaler.h", | |
| 38 "libyuv/include/webrtc_libyuv.h", | 37 "libyuv/include/webrtc_libyuv.h", |
| 39 "libyuv/scaler.cc", | |
| 40 "libyuv/webrtc_libyuv.cc", | 38 "libyuv/webrtc_libyuv.cc", |
| 41 "video_frame.cc", | 39 "video_frame.cc", |
| 42 "video_frame_buffer.cc", | 40 "video_frame_buffer.cc", |
| 43 "video_render_frames.cc", | 41 "video_render_frames.cc", |
| 44 "video_render_frames.h", | 42 "video_render_frames.h", |
| 45 ] | 43 ] |
| 46 | 44 |
| 47 include_dirs = [ "../modules/interface" ] | 45 include_dirs = [ "../modules/interface" ] |
| 48 | 46 |
| 49 configs += [ "..:common_config" ] | 47 configs += [ "..:common_config" ] |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 testonly = true | 85 testonly = true |
| 88 | 86 |
| 89 sources = [ | 87 sources = [ |
| 90 "bitrate_adjuster_unittest.cc", | 88 "bitrate_adjuster_unittest.cc", |
| 91 "h264/pps_parser_unittest.cc", | 89 "h264/pps_parser_unittest.cc", |
| 92 "h264/sps_parser_unittest.cc", | 90 "h264/sps_parser_unittest.cc", |
| 93 "h264/sps_vui_rewriter_unittest.cc", | 91 "h264/sps_vui_rewriter_unittest.cc", |
| 94 "i420_buffer_pool_unittest.cc", | 92 "i420_buffer_pool_unittest.cc", |
| 95 "i420_video_frame_unittest.cc", | 93 "i420_video_frame_unittest.cc", |
| 96 "libyuv/libyuv_unittest.cc", | 94 "libyuv/libyuv_unittest.cc", |
| 97 "libyuv/scaler_unittest.cc", | |
| 98 ] | 95 ] |
| 99 | 96 |
| 100 configs += [ "..:common_config" ] | 97 configs += [ "..:common_config" ] |
| 101 public_configs = [ "..:common_inherited_config" ] | 98 public_configs = [ "..:common_inherited_config" ] |
| 102 | 99 |
| 103 # TODO(jschuh): Bug 1348: fix this warning. | 100 # TODO(jschuh): Bug 1348: fix this warning. |
| 104 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 101 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 105 | 102 |
| 106 if (is_clang) { | 103 if (is_clang) { |
| 107 # Suppress warnings from the Chromium Clang plugin. | 104 # Suppress warnings from the Chromium Clang plugin. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 122 deps += [ "//testing/android/native_test:native_test_support" ] | 119 deps += [ "//testing/android/native_test:native_test_support" ] |
| 123 | 120 |
| 124 # This needs to be kept in sync with the .isolate file. | 121 # This needs to be kept in sync with the .isolate file. |
| 125 # TODO(kjellander); Move this to android_assets targets instead. | 122 # TODO(kjellander); Move this to android_assets targets instead. |
| 126 data = [ | 123 data = [ |
| 127 "//resources/foreman_cif.yuv", | 124 "//resources/foreman_cif.yuv", |
| 128 ] | 125 ] |
| 129 } | 126 } |
| 130 } | 127 } |
| 131 } | 128 } |
| OLD | NEW |