| 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 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 libs += [ | 546 libs += [ |
| 547 "log", | 547 "log", |
| 548 "GLESv2", | 548 "GLESv2", |
| 549 ] | 549 ] |
| 550 } | 550 } |
| 551 | 551 |
| 552 if (is_ios || is_mac) { | 552 if (is_ios || is_mac) { |
| 553 sources += [ | 553 sources += [ |
| 554 "maccocoathreadhelper.h", | 554 "maccocoathreadhelper.h", |
| 555 "maccocoathreadhelper.mm", | 555 "maccocoathreadhelper.mm", |
| 556 "macconversion.cc", | |
| 557 "macconversion.h", | |
| 558 "macifaddrs_converter.cc", | 556 "macifaddrs_converter.cc", |
| 559 "scoped_autorelease_pool.h", | 557 "scoped_autorelease_pool.h", |
| 560 "scoped_autorelease_pool.mm", | 558 "scoped_autorelease_pool.mm", |
| 561 ] | 559 ] |
| 562 } | 560 } |
| 563 | 561 |
| 564 if (use_x11) { | 562 if (use_x11) { |
| 565 libs += [ | 563 libs += [ |
| 566 "dl", | 564 "dl", |
| 567 "rt", | 565 "rt", |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 900 | 898 |
| 901 if (is_android) { | 899 if (is_android) { |
| 902 android_library("base_java") { | 900 android_library("base_java") { |
| 903 java_files = [ | 901 java_files = [ |
| 904 "java/src/org/webrtc/Logging.java", | 902 "java/src/org/webrtc/Logging.java", |
| 905 "java/src/org/webrtc/Size.java", | 903 "java/src/org/webrtc/Size.java", |
| 906 "java/src/org/webrtc/ThreadUtils.java", | 904 "java/src/org/webrtc/ThreadUtils.java", |
| 907 ] | 905 ] |
| 908 } | 906 } |
| 909 } | 907 } |
| OLD | NEW |