| 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("../webrtc.gni") |    9 import("../webrtc.gni") | 
|   10  |   10  | 
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   70   if (rtc_build_libyuv) { |   70   if (rtc_build_libyuv) { | 
|   71     deps += [ "$rtc_libyuv_dir" ] |   71     deps += [ "$rtc_libyuv_dir" ] | 
|   72     public_deps += [ "$rtc_libyuv_dir" ] |   72     public_deps += [ "$rtc_libyuv_dir" ] | 
|   73   } else { |   73   } else { | 
|   74     # Need to add a directory normally exported by libyuv. |   74     # Need to add a directory normally exported by libyuv. | 
|   75     include_dirs += [ "$rtc_libyuv_dir/include" ] |   75     include_dirs += [ "$rtc_libyuv_dir/include" ] | 
|   76   } |   76   } | 
|   77 } |   77 } | 
|   78  |   78  | 
|   79 if (rtc_include_tests) { |   79 if (rtc_include_tests) { | 
|   80   common_video_resources = [ "//resources/foreman_cif.yuv" ] |   80   common_video_resources = [ "../../resources/foreman_cif.yuv" ] | 
|   81  |   81  | 
|   82   if (is_ios) { |   82   if (is_ios) { | 
|   83     bundle_data("common_video_unittests_bundle_data") { |   83     bundle_data("common_video_unittests_bundle_data") { | 
|   84       testonly = true |   84       testonly = true | 
|   85       sources = common_video_resources |   85       sources = common_video_resources | 
|   86       outputs = [ |   86       outputs = [ | 
|   87         "{{bundle_resources_dir}}/{{source_file_part}}", |   87         "{{bundle_resources_dir}}/{{source_file_part}}", | 
|   88       ] |   88       ] | 
|   89     } |   89     } | 
|   90   } |   90   } | 
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  128     if (is_android) { |  128     if (is_android) { | 
|  129       deps += [ "//testing/android/native_test:native_test_support" ] |  129       deps += [ "//testing/android/native_test:native_test_support" ] | 
|  130       shard_timeout = 900 |  130       shard_timeout = 900 | 
|  131     } |  131     } | 
|  132  |  132  | 
|  133     if (is_ios) { |  133     if (is_ios) { | 
|  134       deps += [ ":common_video_unittests_bundle_data" ] |  134       deps += [ ":common_video_unittests_bundle_data" ] | 
|  135     } |  135     } | 
|  136   } |  136   } | 
|  137 } |  137 } | 
| OLD | NEW |