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

Side by Side Diff: gpu/gpu_config.gypi

Issue 462433002: make it possible to disable the use of libpci on linux again (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove unneeded import Created 6 years, 4 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 | « gpu/config/BUILD.gn ('k') | no next file » | 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 'dependencies': [ 6 'dependencies': [
7 '../third_party/re2/re2.gyp:re2', 7 '../third_party/re2/re2.gyp:re2',
8 '../base/base.gyp:base', 8 '../base/base.gyp:base',
9 '../ui/gl/gl.gyp:gl', 9 '../ui/gl/gl.gyp:gl',
10 ], 10 ],
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 }, 58 },
59 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 59 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
60 'msvs_disabled_warnings': [ 4267, ], 60 'msvs_disabled_warnings': [ 4267, ],
61 }], 61 }],
62 ['OS=="win" and branding=="Chrome" and buildtype=="Official"', { 62 ['OS=="win" and branding=="Chrome" and buildtype=="Official"', {
63 'sources': [ 63 'sources': [
64 '../third_party/amd/AmdCfxPxExt.h', 64 '../third_party/amd/AmdCfxPxExt.h',
65 '../third_party/amd/amd_videocard_info_win.cc', 65 '../third_party/amd/amd_videocard_info_win.cc',
66 ], 66 ],
67 }], 67 }],
68 ['OS=="linux"', { 68 ['OS=="linux" and (use_x11==1 or use_ozone==1)', {
69 'dependencies': [ 69 'dependencies': [
70 '../build/linux/system.gyp:libpci', 70 '../build/linux/system.gyp:libpci',
71 ], 71 ],
72 }], 72 }],
73 ['OS=="linux" and use_x11==1', { 73 ['OS=="linux" and use_x11==1', {
74 'dependencies': [ 74 'dependencies': [
75 '../build/linux/system.gyp:x11', 75 '../build/linux/system.gyp:x11',
76 '../build/linux/system.gyp:xext', 76 '../build/linux/system.gyp:xext',
77 '../third_party/libXNVCtrl/libXNVCtrl.gyp:libXNVCtrl', 77 '../third_party/libXNVCtrl/libXNVCtrl.gyp:libXNVCtrl',
78 ], 78 ],
79 }], 79 }],
80 ], 80 ],
81 } 81 }
OLDNEW
« no previous file with comments | « gpu/config/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698