Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Side by Side Diff: webrtc/base/BUILD.gn

Issue 2784483002: Add Darwin thread.h implementation. (Closed)
Patch Set: Make ThreadInit private to rtc::Thread Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/base/maccocoathreadhelper.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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",
548 "maccocoathreadhelper.mm",
549 "macifaddrs_converter.cc", 547 "macifaddrs_converter.cc",
550 "scoped_autorelease_pool.h", 548 "thread_darwin.mm",
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
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 }
OLDNEW
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/base/maccocoathreadhelper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698