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 492 matching lines...) Loading... | |
503 sources += [ | 503 sources += [ |
504 "latebindingsymboltable.cc", | 504 "latebindingsymboltable.cc", |
505 "latebindingsymboltable.h", | 505 "latebindingsymboltable.h", |
506 "posix.cc", | 506 "posix.cc", |
507 "posix.h", | 507 "posix.h", |
508 ] | 508 ] |
509 } | 509 } |
510 | 510 |
511 if (is_mac) { | 511 if (is_mac) { |
512 sources += [ | 512 sources += [ |
513 "macasyncsocket.cc", | |
514 "macasyncsocket.h", | |
515 "maccocoasocketserver.h", | |
516 "maccocoasocketserver.mm", | |
517 "macsocketserver.cc", | |
518 "macsocketserver.h", | |
519 "macwindowpicker.cc", | 513 "macwindowpicker.cc", |
520 "macwindowpicker.h", | 514 "macwindowpicker.h", |
kthelgason
2016/10/06 11:51:04
Can this stuff go as well?
| |
521 ] | 515 ] |
522 } | 516 } |
523 | 517 |
524 if (is_win) { | 518 if (is_win) { |
525 sources += [ | 519 sources += [ |
526 "diskcache_win32.cc", | 520 "diskcache_win32.cc", |
527 "diskcache_win32.h", | 521 "diskcache_win32.h", |
528 "win32regkey.cc", | 522 "win32regkey.cc", |
529 "win32regkey.h", | 523 "win32regkey.h", |
530 "win32socketinit.cc", | 524 "win32socketinit.cc", |
(...skipping 207 matching lines...) Loading... | |
738 "java/src/org/webrtc/Logging.java", | 732 "java/src/org/webrtc/Logging.java", |
739 "java/src/org/webrtc/Size.java", | 733 "java/src/org/webrtc/Size.java", |
740 "java/src/org/webrtc/ThreadUtils.java", | 734 "java/src/org/webrtc/ThreadUtils.java", |
741 ] | 735 ] |
742 | 736 |
743 deps = [ | 737 deps = [ |
744 "//base:base_java", | 738 "//base:base_java", |
745 ] | 739 ] |
746 } | 740 } |
747 } | 741 } |
OLD | NEW |