| 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 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 "include/logging.h", | 28 "include/logging.h", |
| 29 "include/metrics.h", | 29 "include/metrics.h", |
| 30 "include/ntp_time.h", | 30 "include/ntp_time.h", |
| 31 "include/rtp_to_ntp_estimator.h", | 31 "include/rtp_to_ntp_estimator.h", |
| 32 "include/rw_lock_wrapper.h", | 32 "include/rw_lock_wrapper.h", |
| 33 "include/sleep.h", | 33 "include/sleep.h", |
| 34 "include/static_instance.h", | 34 "include/static_instance.h", |
| 35 "include/stringize_macros.h", | 35 "include/stringize_macros.h", |
| 36 "include/timestamp_extrapolator.h", | 36 "include/timestamp_extrapolator.h", |
| 37 "include/trace.h", | 37 "include/trace.h", |
| 38 "include/utf_util_win.h", | |
| 39 "source/aligned_malloc.cc", | 38 "source/aligned_malloc.cc", |
| 40 "source/atomic32_win.cc", | 39 "source/atomic32_win.cc", |
| 41 "source/clock.cc", | 40 "source/clock.cc", |
| 42 "source/condition_variable_event_win.cc", | 41 "source/condition_variable_event_win.cc", |
| 43 "source/condition_variable_event_win.h", | 42 "source/condition_variable_event_win.h", |
| 44 "source/cpu_features.cc", | 43 "source/cpu_features.cc", |
| 45 "source/cpu_info.cc", | 44 "source/cpu_info.cc", |
| 46 "source/event.cc", | 45 "source/event.cc", |
| 47 "source/event_timer_posix.cc", | 46 "source/event_timer_posix.cc", |
| 48 "source/event_timer_posix.h", | 47 "source/event_timer_posix.h", |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 "//testing/gtest", | 195 "//testing/gtest", |
| 197 ] | 196 ] |
| 198 | 197 |
| 199 if (is_android) { | 198 if (is_android) { |
| 200 deps += [ "//testing/android/native_test:native_test_support" ] | 199 deps += [ "//testing/android/native_test:native_test_support" ] |
| 201 | 200 |
| 202 shard_timeout = 900 | 201 shard_timeout = 900 |
| 203 } | 202 } |
| 204 } | 203 } |
| 205 } | 204 } |
| OLD | NEW |