| 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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 if (build_with_chromium) { | 490 if (build_with_chromium) { |
| 491 if (is_win) { | 491 if (is_win) { |
| 492 sources += [ "../../webrtc_overrides/webrtc/base/win32socketinit.cc" ] | 492 sources += [ "../../webrtc_overrides/webrtc/base/win32socketinit.cc" ] |
| 493 } | 493 } |
| 494 include_dirs = [ "../../boringssl/src/include" ] | 494 include_dirs = [ "../../boringssl/src/include" ] |
| 495 public_configs += [ ":rtc_base_chromium_config" ] | 495 public_configs += [ ":rtc_base_chromium_config" ] |
| 496 } else { | 496 } else { |
| 497 configs += [ ":rtc_base_warnings_config" ] | 497 configs += [ ":rtc_base_warnings_config" ] |
| 498 sources += [ | 498 sources += [ |
| 499 "callback.h", | 499 "callback.h", |
| 500 "fileutils_mock.h", | |
| 501 "json.cc", | 500 "json.cc", |
| 502 "json.h", | 501 "json.h", |
| 503 "logsinks.cc", | 502 "logsinks.cc", |
| 504 "logsinks.h", | 503 "logsinks.h", |
| 505 "mathutils.h", | 504 "mathutils.h", |
| 506 "optionsfile.cc", | 505 "optionsfile.cc", |
| 507 "optionsfile.h", | 506 "optionsfile.h", |
| 508 "rollingaccumulator.h", | 507 "rollingaccumulator.h", |
| 509 "scopedptrcollection.h", | 508 "scopedptrcollection.h", |
| 510 "sslroots.h", | 509 "sslroots.h", |
| (...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 909 | 908 |
| 910 if (is_android) { | 909 if (is_android) { |
| 911 android_library("base_java") { | 910 android_library("base_java") { |
| 912 java_files = [ | 911 java_files = [ |
| 913 "java/src/org/webrtc/Logging.java", | 912 "java/src/org/webrtc/Logging.java", |
| 914 "java/src/org/webrtc/Size.java", | 913 "java/src/org/webrtc/Size.java", |
| 915 "java/src/org/webrtc/ThreadUtils.java", | 914 "java/src/org/webrtc/ThreadUtils.java", |
| 916 ] | 915 ] |
| 917 } | 916 } |
| 918 } | 917 } |
| OLD | NEW |