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

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

Issue 2511103002: Delete WindowPicker class and subclasses. (Closed)
Patch Set: Drop win32windowpicker_unittest.cc from build. Created 4 years, 1 month 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/macwindowpicker.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 541 matching lines...) Expand 10 before | Expand all | Expand 10 after
552 "sslconfig.h", 552 "sslconfig.h",
553 "sslroots.h", 553 "sslroots.h",
554 "testbase64.h", 554 "testbase64.h",
555 "testclient.cc", 555 "testclient.cc",
556 "testclient.h", 556 "testclient.h",
557 "transformadapter.cc", 557 "transformadapter.cc",
558 "transformadapter.h", 558 "transformadapter.h",
559 "virtualsocketserver.cc", 559 "virtualsocketserver.cc",
560 "virtualsocketserver.h", 560 "virtualsocketserver.h",
561 "window.h", 561 "window.h",
562 "windowpicker.h",
563 "windowpickerfactory.h",
564 ] 562 ]
565 563
566 if (is_linux) { 564 if (is_linux) {
567 sources += [ 565 sources += [
568 "dbus.cc", 566 "dbus.cc",
569 "dbus.h", 567 "dbus.h",
570 "libdbusglibsymboltable.cc", 568 "libdbusglibsymboltable.cc",
571 "libdbusglibsymboltable.h", 569 "libdbusglibsymboltable.h",
572 "linuxfdwalk.c", 570 "linuxfdwalk.c",
573 "linuxfdwalk.h", 571 "linuxfdwalk.h",
574 ] 572 ]
575 } 573 }
576 574
577 if (is_posix) { 575 if (is_posix) {
578 sources += [ 576 sources += [
579 "latebindingsymboltable.cc", 577 "latebindingsymboltable.cc",
580 "latebindingsymboltable.h", 578 "latebindingsymboltable.h",
581 ] 579 ]
582 } 580 }
583 581
584 if (is_mac) {
585 sources += [
586 "macwindowpicker.cc",
587 "macwindowpicker.h",
588 ]
589 }
590
591 if (is_win) { 582 if (is_win) {
592 sources += [ 583 sources += [
593 "diskcache_win32.cc", 584 "diskcache_win32.cc",
594 "diskcache_win32.h", 585 "diskcache_win32.h",
595 "win32regkey.cc", 586 "win32regkey.cc",
596 "win32regkey.h", 587 "win32regkey.h",
597 "win32socketinit.cc", 588 "win32socketinit.cc",
598 "win32socketinit.h", 589 "win32socketinit.h",
599 "win32socketserver.cc", 590 "win32socketserver.cc",
600 "win32socketserver.h", 591 "win32socketserver.h",
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
636 "maccocoathreadhelper.mm", 627 "maccocoathreadhelper.mm",
637 "macconversion.cc", 628 "macconversion.cc",
638 "macconversion.h", 629 "macconversion.h",
639 "macifaddrs_converter.cc", 630 "macifaddrs_converter.cc",
640 "scoped_autorelease_pool.h", 631 "scoped_autorelease_pool.h",
641 "scoped_autorelease_pool.mm", 632 "scoped_autorelease_pool.mm",
642 ] 633 ]
643 } 634 }
644 635
645 if (use_x11) { 636 if (use_x11) {
646 sources += [
647 "x11windowpicker.cc",
648 "x11windowpicker.h",
649 ]
650 libs += [ 637 libs += [
651 "dl", 638 "dl",
652 "rt", 639 "rt",
653 "Xext", 640 "Xext",
654 "X11", 641 "X11",
655 "Xcomposite", 642 "Xcomposite",
656 "Xrender", 643 "Xrender",
657 ] 644 ]
658 } 645 }
659 646
(...skipping 17 matching lines...) Expand all
677 664
678 if (is_win) { 665 if (is_win) {
679 sources += [ 666 sources += [
680 "win32.cc", 667 "win32.cc",
681 "win32.h", 668 "win32.h",
682 "win32filesystem.cc", 669 "win32filesystem.cc",
683 "win32filesystem.h", 670 "win32filesystem.h",
684 "win32securityerrors.cc", 671 "win32securityerrors.cc",
685 "win32window.cc", 672 "win32window.cc",
686 "win32window.h", 673 "win32window.h",
687 "win32windowpicker.cc",
688 "win32windowpicker.h",
689 "winping.cc", 674 "winping.cc",
690 "winping.h", 675 "winping.h",
691 ] 676 ]
692 677
693 libs += [ 678 libs += [
694 "crypt32.lib", 679 "crypt32.lib",
695 "iphlpapi.lib", 680 "iphlpapi.lib",
696 "secur32.lib", 681 "secur32.lib",
697 ] 682 ]
698 683
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
800 "java/src/org/webrtc/Logging.java", 785 "java/src/org/webrtc/Logging.java",
801 "java/src/org/webrtc/Size.java", 786 "java/src/org/webrtc/Size.java",
802 "java/src/org/webrtc/ThreadUtils.java", 787 "java/src/org/webrtc/ThreadUtils.java",
803 ] 788 ]
804 789
805 deps = [ 790 deps = [
806 "//base:base_java", 791 "//base:base_java",
807 ] 792 ]
808 } 793 }
809 } 794 }
OLDNEW
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/base/macwindowpicker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698