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 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
594 } | 594 } |
595 | 595 |
596 if (is_mac) { | 596 if (is_mac) { |
597 sources += [ | 597 sources += [ |
598 "macutils.cc", | 598 "macutils.cc", |
599 "macutils.h", | 599 "macutils.h", |
600 ] | 600 ] |
601 libs += [ | 601 libs += [ |
602 # For ProcessInformationCopyDictionary in unixfilesystem.cc. | 602 # For ProcessInformationCopyDictionary in unixfilesystem.cc. |
603 "ApplicationServices.framework", | 603 "ApplicationServices.framework", |
604 | |
605 # For GetGestalt in macutils.cc. | |
606 "CoreServices.framework", | |
607 ] | 604 ] |
608 } | 605 } |
609 | 606 |
610 if (is_win) { | 607 if (is_win) { |
611 sources += [ | 608 sources += [ |
612 "win32.cc", | 609 "win32.cc", |
613 "win32.h", | 610 "win32.h", |
614 "win32filesystem.cc", | 611 "win32filesystem.cc", |
615 "win32filesystem.h", | 612 "win32filesystem.h", |
616 "win32securityerrors.cc", | 613 "win32securityerrors.cc", |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
734 "java/src/org/webrtc/Logging.java", | 731 "java/src/org/webrtc/Logging.java", |
735 "java/src/org/webrtc/Size.java", | 732 "java/src/org/webrtc/Size.java", |
736 "java/src/org/webrtc/ThreadUtils.java", | 733 "java/src/org/webrtc/ThreadUtils.java", |
737 ] | 734 ] |
738 | 735 |
739 deps = [ | 736 deps = [ |
740 "//base:base_java", | 737 "//base:base_java", |
741 ] | 738 ] |
742 } | 739 } |
743 } | 740 } |
OLD | NEW |