| 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 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 615 sources += [ | 615 sources += [ |
| 616 "win32.cc", | 616 "win32.cc", |
| 617 "win32.h", | 617 "win32.h", |
| 618 "win32filesystem.cc", | 618 "win32filesystem.cc", |
| 619 "win32filesystem.h", | 619 "win32filesystem.h", |
| 620 "win32securityerrors.cc", | 620 "win32securityerrors.cc", |
| 621 "win32window.cc", | 621 "win32window.cc", |
| 622 "win32window.h", | 622 "win32window.h", |
| 623 "win32windowpicker.cc", | 623 "win32windowpicker.cc", |
| 624 "win32windowpicker.h", | 624 "win32windowpicker.h", |
| 625 "winfirewall.cc", | |
| 626 "winfirewall.h", | |
| 627 "winping.cc", | 625 "winping.cc", |
| 628 "winping.h", | 626 "winping.h", |
| 629 ] | 627 ] |
| 630 | 628 |
| 631 libs += [ | 629 libs += [ |
| 632 "crypt32.lib", | 630 "crypt32.lib", |
| 633 "iphlpapi.lib", | 631 "iphlpapi.lib", |
| 634 "secur32.lib", | 632 "secur32.lib", |
| 635 ] | 633 ] |
| 636 | 634 |
| (...skipping 101 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 |