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

Side by Side Diff: ui/views/views.gyp

Issue 854753002: linux/gyp: Find missing symbols at build time, not runtime. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ozone Created 5 years, 11 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 | « ui/events/platform/x11/x11_events_platform.gyp ('k') | ui/wm/wm.gyp » ('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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 { 4 {
5 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 # Sources lists shared with GN build. 7 # Sources lists shared with GN build.
8 'views_sources': [ 8 'views_sources': [
9 'accessibility/native_view_accessibility.cc', 9 'accessibility/native_view_accessibility.cc',
10 'accessibility/native_view_accessibility.h', 10 'accessibility/native_view_accessibility.h',
(...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after
672 'dependencies': [ 672 'dependencies': [
673 '../ozone/ozone.gyp:ozone', 673 '../ozone/ozone.gyp:ozone',
674 ], 674 ],
675 }], 675 }],
676 ['use_x11==1', { 676 ['use_x11==1', {
677 'dependencies': [ 677 'dependencies': [
678 '../../build/linux/system.gyp:x11', 678 '../../build/linux/system.gyp:x11',
679 '../../build/linux/system.gyp:xrandr', 679 '../../build/linux/system.gyp:xrandr',
680 '../events/devices/events_devices.gyp:events_devices', 680 '../events/devices/events_devices.gyp:events_devices',
681 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' , 681 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' ,
682 '../gfx/x/gfx_x11.gyp:gfx_x11',
682 ], 683 ],
683 }], 684 }],
684 ['use_aura==1', { 685 ['use_aura==1', {
685 'sources': [ 686 'sources': [
686 '<@(views_aura_sources)', 687 '<@(views_aura_sources)',
687 ], 688 ],
688 'dependencies': [ 689 'dependencies': [
689 '../aura/aura.gyp:aura', 690 '../aura/aura.gyp:aura',
690 '../wm/wm.gyp:wm', 691 '../wm/wm.gyp:wm',
691 ], 692 ],
692 }], 693 }],
693 ['use_aura and chromeos == 0', { 694 ['use_aura and chromeos == 0', {
694 'sources': [ '<@(views_desktop_aura_sources)' ], 695 'sources': [ '<@(views_desktop_aura_sources)' ],
695 'conditions': [ 696 'conditions': [
696 ['OS == "linux"', { 697 ['OS == "linux"', {
697 'sources': [ '<@(views_desktop_aura_linux_sources)' ], 698 'sources': [ '<@(views_desktop_aura_linux_sources)' ],
698 }], 699 }],
699 ['use_x11 == 1', { 700 ['use_x11 == 1', {
700 'sources': [ '<@(views_desktop_aura_x11_sources)' ], 701 'sources': [ '<@(views_desktop_aura_x11_sources)' ],
702 'dependencies': [
703 '../../build/linux/system.gyp:xext',
704 ],
701 }], 705 }],
702 ['OS == "win"', { 706 ['OS == "win"', {
703 'sources': [ '<@(views_desktop_aura_win_sources)' ], 707 'sources': [ '<@(views_desktop_aura_win_sources)' ],
704 }], 708 }],
705 ['use_ozone==1', { 709 ['use_ozone==1', {
706 'sources': [ '<@(views_desktop_aura_ozone_sources)' ], 710 'sources': [ '<@(views_desktop_aura_ozone_sources)' ],
707 }], 711 }],
708 ], 712 ],
709 }], 713 }],
710 ['OS=="mac"', { 714 ['OS=="mac"', {
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
903 '../aura/aura.gyp:aura', 907 '../aura/aura.gyp:aura',
904 '../wm/wm.gyp:wm', 908 '../wm/wm.gyp:wm',
905 ], 909 ],
906 }], 910 }],
907 ], 911 ],
908 }, # target_name: macviews_interactive_ui_tests 912 }, # target_name: macviews_interactive_ui_tests
909 ], # targets 913 ], # targets
910 }], 914 }],
911 ], # conditions 915 ], # conditions
912 } 916 }
OLDNEW
« no previous file with comments | « ui/events/platform/x11/x11_events_platform.gyp ('k') | ui/wm/wm.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698