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: build/linux/system.gyp

Issue 27764002: Enable Ozone software implementation in GYP (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Refactored GYP dridrm dependency 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 | ui/gfx/gfx.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 { 5 {
6 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 ['sysroot!=""', { 8 ['sysroot!=""', {
9 'pkg-config': './pkg-config-wrapper "<(sysroot)" "<(target_arch)"', 9 'pkg-config': './pkg-config-wrapper "<(sysroot)" "<(target_arch)"',
10 }, { 10 }, {
(...skipping 851 matching lines...) Expand 10 before | Expand all | Expand 10 after
862 'ldflags': [ 862 'ldflags': [
863 '<!@(<(pkg-config) --libs-only-L --libs-only-other libudev)', 863 '<!@(<(pkg-config) --libs-only-L --libs-only-other libudev)',
864 ], 864 ],
865 'libraries': [ 865 'libraries': [
866 '<!@(<(pkg-config) --libs-only-l libudev)', 866 '<!@(<(pkg-config) --libs-only-l libudev)',
867 ], 867 ],
868 }, 868 },
869 }], 869 }],
870 ], 870 ],
871 }, 871 },
872 {
873 'target_name': 'dridrm',
874 'type': 'none',
875 'direct_dependent_settings': {
876 'cflags': [
877 '<!@(<(pkg-config) --cflags libdrm)',
878 ],
879 },
880 'link_settings': {
881 'libraries': [
882 '<!@(<(pkg-config) --libs-only-l libdrm)',
883 ],
884 },
885 },
872 ], 886 ],
873 } 887 }
OLDNEW
« no previous file with comments | « no previous file | ui/gfx/gfx.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698