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

Side by Side Diff: base/base.gyp

Issue 23536057: linux_aura: Implement most of DesktopScreenX11. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Attempt at fixing chromeos compile. Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | base/base.gypi » ('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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 ], 70 ],
71 }], 71 }],
72 ['use_x11==1', { 72 ['use_x11==1', {
73 'dependencies': [ 73 'dependencies': [
74 '../build/linux/system.gyp:x11', 74 '../build/linux/system.gyp:x11',
75 ], 75 ],
76 'export_dependent_settings': [ 76 'export_dependent_settings': [
77 '../build/linux/system.gyp:x11', 77 '../build/linux/system.gyp:x11',
78 ], 78 ],
79 }], 79 }],
80 ['use_aura==1 and use_x11==1', {
81 'dependencies': [
82 '../build/linux/system.gyp:xrandr',
83 ],
84 'export_dependent_settings': [
85 '../build/linux/system.gyp:xrandr',
86 ],
87 }],
80 ['OS == "android" and _toolset == "host"', { 88 ['OS == "android" and _toolset == "host"', {
81 # Always build base as a static_library for host toolset, even if 89 # Always build base as a static_library for host toolset, even if
82 # we're doing a component build. Specifically, we only care about the 90 # we're doing a component build. Specifically, we only care about the
83 # target toolset using components since that's what developers are 91 # target toolset using components since that's what developers are
84 # focusing on. In theory we should do this more generally for all 92 # focusing on. In theory we should do this more generally for all
85 # targets when building for host, but getting the gyp magic 93 # targets when building for host, but getting the gyp magic
86 # per-toolset for the "component" variable is hard, and we really only 94 # per-toolset for the "component" variable is hard, and we really only
87 # need base on host. 95 # need base on host.
88 'type': 'static_library', 96 'type': 'static_library',
89 # Base for host support is the minimum required to run the 97 # Base for host support is the minimum required to run the
(...skipping 712 matching lines...) Expand 10 before | Expand all | Expand 10 after
802 ], 810 ],
803 'sources/': [ 811 'sources/': [
804 ['exclude', '^win/'], 812 ['exclude', '^win/'],
805 ], 813 ],
806 'sources!': [ 814 'sources!': [
807 'debug/trace_event_win_unittest.cc', 815 'debug/trace_event_win_unittest.cc',
808 'time/time_win_unittest.cc', 816 'time/time_win_unittest.cc',
809 'win/win_util_unittest.cc', 817 'win/win_util_unittest.cc',
810 ], 818 ],
811 }], 819 }],
820 ['use_aura==1 and use_x11==1', {
821 'sources': [
822 'x11/edid_parser_x11_unittest.cc',
823 ],
824 }],
812 ['use_system_nspr==1', { 825 ['use_system_nspr==1', {
813 'dependencies': [ 826 'dependencies': [
814 'third_party/nspr/nspr.gyp:nspr', 827 'third_party/nspr/nspr.gyp:nspr',
815 ], 828 ],
816 }], 829 }],
817 ], # conditions 830 ], # conditions
818 'target_conditions': [ 831 'target_conditions': [
819 ['OS == "ios" and _toolset != "host"', { 832 ['OS == "ios" and _toolset != "host"', {
820 'sources/': [ 833 'sources/': [
821 # Pull in specific Mac files for iOS (which have been filtered out 834 # Pull in specific Mac files for iOS (which have been filtered out
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after
1331 'base_unittests.isolate', 1344 'base_unittests.isolate',
1332 ], 1345 ],
1333 'sources': [ 1346 'sources': [
1334 'base_unittests.isolate', 1347 'base_unittests.isolate',
1335 ], 1348 ],
1336 }, 1349 },
1337 ], 1350 ],
1338 }], 1351 }],
1339 ], 1352 ],
1340 } 1353 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698