| 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/crypto.gni") | 9 import("//build/config/crypto.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 "thread_annotations.h", | 176 "thread_annotations.h", |
| 177 "thread_checker.h", | 177 "thread_checker.h", |
| 178 "thread_checker_impl.cc", | 178 "thread_checker_impl.cc", |
| 179 "thread_checker_impl.h", | 179 "thread_checker_impl.h", |
| 180 "timestampaligner.cc", | 180 "timestampaligner.cc", |
| 181 "timestampaligner.h", | 181 "timestampaligner.h", |
| 182 "timeutils.cc", | 182 "timeutils.cc", |
| 183 "timeutils.h", | 183 "timeutils.h", |
| 184 "trace_event.h", | 184 "trace_event.h", |
| 185 "type_traits.h", | 185 "type_traits.h", |
| 186 "urlencode.cc", | |
| 187 "urlencode.h", | |
| 188 ] | 186 ] |
| 189 | 187 |
| 190 if (is_android) { | 188 if (is_android) { |
| 191 libs += [ "log" ] | 189 libs += [ "log" ] |
| 192 } | 190 } |
| 193 | 191 |
| 194 if (is_posix) { | 192 if (is_posix) { |
| 195 sources += [ "file_posix.cc" ] | 193 sources += [ "file_posix.cc" ] |
| 196 } | 194 } |
| 197 | 195 |
| (...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 766 | 764 |
| 767 deps = [ | 765 deps = [ |
| 768 "//base:base_java", | 766 "//base:base_java", |
| 769 ] | 767 ] |
| 770 | 768 |
| 771 data = [ | 769 data = [ |
| 772 "//webrtc/build/android/test_runner.py", | 770 "//webrtc/build/android/test_runner.py", |
| 773 ] | 771 ] |
| 774 } | 772 } |
| 775 } | 773 } |
| OLD | NEW |