| 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/config/android/config.gni") | 9 import("//build/config/android/config.gni") |
| 10 import("../build/webrtc.gni") | 10 import("../build/webrtc.gni") |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 "interface/scoped_vector.h", | 35 "interface/scoped_vector.h", |
| 36 "interface/sleep.h", | 36 "interface/sleep.h", |
| 37 "interface/sort.h", | 37 "interface/sort.h", |
| 38 "interface/static_instance.h", | 38 "interface/static_instance.h", |
| 39 "interface/stl_util.h", | 39 "interface/stl_util.h", |
| 40 "interface/stringize_macros.h", | 40 "interface/stringize_macros.h", |
| 41 "interface/thread_wrapper.h", | 41 "interface/thread_wrapper.h", |
| 42 "interface/tick_util.h", | 42 "interface/tick_util.h", |
| 43 "interface/timestamp_extrapolator.h", | 43 "interface/timestamp_extrapolator.h", |
| 44 "interface/trace.h", | 44 "interface/trace.h", |
| 45 "interface/trace_event.h", | |
| 46 "interface/utf_util_win.h", | 45 "interface/utf_util_win.h", |
| 47 "source/aligned_malloc.cc", | 46 "source/aligned_malloc.cc", |
| 48 "source/atomic32_mac.cc", | 47 "source/atomic32_mac.cc", |
| 49 "source/atomic32_win.cc", | 48 "source/atomic32_win.cc", |
| 50 "source/clock.cc", | 49 "source/clock.cc", |
| 51 "source/condition_variable.cc", | 50 "source/condition_variable.cc", |
| 52 "source/condition_variable_event_win.cc", | 51 "source/condition_variable_event_win.cc", |
| 53 "source/condition_variable_event_win.h", | 52 "source/condition_variable_event_win.h", |
| 54 "source/condition_variable_native_win.cc", | 53 "source/condition_variable_native_win.cc", |
| 55 "source/condition_variable_native_win.h", | 54 "source/condition_variable_native_win.h", |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 "source/cpu_features_android.c", | 214 "source/cpu_features_android.c", |
| 216 ] | 215 ] |
| 217 | 216 |
| 218 configs += [ "..:common_config" ] | 217 configs += [ "..:common_config" ] |
| 219 public_configs = [ "..:common_inherited_config" ] | 218 public_configs = [ "..:common_inherited_config" ] |
| 220 deps = [ | 219 deps = [ |
| 221 "//third_party/android_tools:cpu_features", | 220 "//third_party/android_tools:cpu_features", |
| 222 ] | 221 ] |
| 223 } | 222 } |
| 224 } | 223 } |
| OLD | NEW |