| 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 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 | 436 |
| 437 include_dirs = [ | 437 include_dirs = [ |
| 438 "../../webrtc_overrides", | 438 "../../webrtc_overrides", |
| 439 "../../boringssl/src/include", | 439 "../../boringssl/src/include", |
| 440 ] | 440 ] |
| 441 | 441 |
| 442 public_configs += [ ":rtc_base_chromium_config" ] | 442 public_configs += [ ":rtc_base_chromium_config" ] |
| 443 } else { | 443 } else { |
| 444 configs += [ ":rtc_base_warnings_config" ] | 444 configs += [ ":rtc_base_warnings_config" ] |
| 445 sources += [ | 445 sources += [ |
| 446 "bandwidthsmoother.cc", | |
| 447 "bandwidthsmoother.h", | |
| 448 "callback.h", | 446 "callback.h", |
| 449 "fileutils_mock.h", | 447 "fileutils_mock.h", |
| 450 "httpserver.cc", | 448 "httpserver.cc", |
| 451 "httpserver.h", | 449 "httpserver.h", |
| 452 "json.cc", | 450 "json.cc", |
| 453 "json.h", | 451 "json.h", |
| 454 "logsinks.cc", | 452 "logsinks.cc", |
| 455 "logsinks.h", | 453 "logsinks.h", |
| 456 "mathutils.h", | 454 "mathutils.h", |
| 457 "multipart.cc", | 455 "multipart.cc", |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 738 "java/src/org/webrtc/Logging.java", | 736 "java/src/org/webrtc/Logging.java", |
| 739 "java/src/org/webrtc/Size.java", | 737 "java/src/org/webrtc/Size.java", |
| 740 "java/src/org/webrtc/ThreadUtils.java", | 738 "java/src/org/webrtc/ThreadUtils.java", |
| 741 ] | 739 ] |
| 742 | 740 |
| 743 deps = [ | 741 deps = [ |
| 744 "//base:base_java", | 742 "//base:base_java", |
| 745 ] | 743 ] |
| 746 } | 744 } |
| 747 } | 745 } |
| OLD | NEW |