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 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
537 ] | 537 ] |
538 | 538 |
539 libs += [ | 539 libs += [ |
540 "log", | 540 "log", |
541 "GLESv2", | 541 "GLESv2", |
542 ] | 542 ] |
543 } | 543 } |
544 | 544 |
545 if (is_ios || is_mac) { | 545 if (is_ios || is_mac) { |
546 sources += [ | 546 sources += [ |
547 "maccocoathreadhelper.h", | 547 "cocoathread.mm", |
548 "maccocoathreadhelper.mm", | |
549 "macifaddrs_converter.cc", | 548 "macifaddrs_converter.cc", |
550 "scoped_autorelease_pool.h", | |
551 "scoped_autorelease_pool.mm", | |
552 ] | 549 ] |
553 } | 550 } |
554 | 551 |
555 if (use_x11) { | 552 if (use_x11) { |
556 libs += [ | 553 libs += [ |
557 "dl", | 554 "dl", |
558 "rt", | 555 "rt", |
559 "Xext", | 556 "Xext", |
560 "X11", | 557 "X11", |
561 "Xcomposite", | 558 "Xcomposite", |
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
897 | 894 |
898 if (is_android) { | 895 if (is_android) { |
899 android_library("base_java") { | 896 android_library("base_java") { |
900 java_files = [ | 897 java_files = [ |
901 "java/src/org/webrtc/Logging.java", | 898 "java/src/org/webrtc/Logging.java", |
902 "java/src/org/webrtc/Size.java", | 899 "java/src/org/webrtc/Size.java", |
903 "java/src/org/webrtc/ThreadUtils.java", | 900 "java/src/org/webrtc/ThreadUtils.java", |
904 ] | 901 ] |
905 } | 902 } |
906 } | 903 } |
OLD | NEW |