| 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") |
| 11 | 11 |
| 12 static_library("system_wrappers") { | 12 static_library("system_wrappers") { |
| 13 sources = [ | 13 sources = [ |
| 14 "include/aligned_array.h", | 14 "include/aligned_array.h", |
| 15 "include/aligned_malloc.h", | 15 "include/aligned_malloc.h", |
| 16 "include/atomic32.h", | 16 "include/atomic32.h", |
| 17 "include/clock.h", | 17 "include/clock.h", |
| 18 "include/condition_variable_wrapper.h", | 18 "include/condition_variable_wrapper.h", |
| 19 "include/cpu_features_wrapper.h", | 19 "include/cpu_features_wrapper.h", |
| 20 "include/cpu_info.h", | 20 "include/cpu_info.h", |
| 21 "include/critical_section_wrapper.h", | 21 "include/critical_section_wrapper.h", |
| 22 "include/data_log.h", | 22 "include/data_log.h", |
| 23 "include/data_log_c.h", | 23 "include/data_log_c.h", |
| 24 "include/data_log_impl.h", | 24 "include/data_log_impl.h", |
| 25 "include/event_tracer.h", | |
| 26 "include/event_wrapper.h", | 25 "include/event_wrapper.h", |
| 27 "include/field_trial.h", | 26 "include/field_trial.h", |
| 28 "include/file_wrapper.h", | 27 "include/file_wrapper.h", |
| 29 "include/fix_interlocked_exchange_pointer_win.h", | 28 "include/fix_interlocked_exchange_pointer_win.h", |
| 30 "include/logging.h", | 29 "include/logging.h", |
| 31 "include/metrics.h", | 30 "include/metrics.h", |
| 32 "include/ref_count.h", | 31 "include/ref_count.h", |
| 33 "include/rtp_to_ntp.h", | 32 "include/rtp_to_ntp.h", |
| 34 "include/rw_lock_wrapper.h", | 33 "include/rw_lock_wrapper.h", |
| 35 "include/scoped_vector.h", | 34 "include/scoped_vector.h", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 60 "source/critical_section_posix.cc", | 59 "source/critical_section_posix.cc", |
| 61 "source/critical_section_posix.h", | 60 "source/critical_section_posix.h", |
| 62 "source/critical_section_win.cc", | 61 "source/critical_section_win.cc", |
| 63 "source/critical_section_win.h", | 62 "source/critical_section_win.h", |
| 64 "source/data_log_c.cc", | 63 "source/data_log_c.cc", |
| 65 "source/event.cc", | 64 "source/event.cc", |
| 66 "source/event_timer_posix.cc", | 65 "source/event_timer_posix.cc", |
| 67 "source/event_timer_posix.h", | 66 "source/event_timer_posix.h", |
| 68 "source/event_timer_win.cc", | 67 "source/event_timer_win.cc", |
| 69 "source/event_timer_win.h", | 68 "source/event_timer_win.h", |
| 70 "source/event_tracer.cc", | |
| 71 "source/file_impl.cc", | 69 "source/file_impl.cc", |
| 72 "source/file_impl.h", | 70 "source/file_impl.h", |
| 73 "source/logging.cc", | 71 "source/logging.cc", |
| 74 "source/rtp_to_ntp.cc", | 72 "source/rtp_to_ntp.cc", |
| 75 "source/rw_lock.cc", | 73 "source/rw_lock.cc", |
| 76 "source/rw_lock_generic.cc", | 74 "source/rw_lock_generic.cc", |
| 77 "source/rw_lock_generic.h", | 75 "source/rw_lock_generic.h", |
| 78 "source/rw_lock_posix.cc", | 76 "source/rw_lock_posix.cc", |
| 79 "source/rw_lock_posix.h", | 77 "source/rw_lock_posix.h", |
| 80 "source/rw_lock_win.cc", | 78 "source/rw_lock_win.cc", |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 "source/cpu_features_android.c", | 205 "source/cpu_features_android.c", |
| 208 ] | 206 ] |
| 209 | 207 |
| 210 configs += [ "..:common_config" ] | 208 configs += [ "..:common_config" ] |
| 211 public_configs = [ "..:common_inherited_config" ] | 209 public_configs = [ "..:common_inherited_config" ] |
| 212 deps = [ | 210 deps = [ |
| 213 "//third_party/android_tools:cpu_features", | 211 "//third_party/android_tools:cpu_features", |
| 214 ] | 212 ] |
| 215 } | 213 } |
| 216 } | 214 } |
| OLD | NEW |