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

Side by Side Diff: gpu/gpu_config.gypi

Issue 15745014: Move GPU device/driver info related code from content to gpu. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: rebase Created 7 years, 7 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/gpu.gyp ('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')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'dependencies': [
7 '../base/base.gyp:base',
8 '../third_party/re2/re2.gyp:re2',
9 '../ui/gl/gl.gyp:gl',
10 ],
11 'include_dirs': [
12 '..',
13 ],
14 'sources': [
15 'config/dx_diag_node.cc',
16 'config/dx_diag_node.h',
17 'config/gpu_blacklist.cc',
18 'config/gpu_blacklist.h',
19 'config/gpu_control_list_jsons.h',
20 'config/gpu_control_list.cc',
21 'config/gpu_control_list.h',
22 'config/gpu_driver_bug_list_json.cc',
23 'config/gpu_driver_bug_list.cc',
24 'config/gpu_driver_bug_list.h',
25 'config/gpu_driver_bug_workaround_type.h',
26 'config/gpu_dx_diagnostics_win.cc',
27 'config/gpu_feature_type.h',
28 'config/gpu_info.cc',
29 'config/gpu_info.h',
30 'config/gpu_info_collector_android.cc',
31 'config/gpu_info_collector_mac.mm',
32 'config/gpu_info_collector_win.cc',
33 'config/gpu_info_collector_x11.cc',
34 'config/gpu_info_collector.cc',
35 'config/gpu_info_collector.h',
36 'config/gpu_performance_stats.h',
37 'config/gpu_switching_list_json.cc',
38 'config/gpu_switching_list.cc',
39 'config/gpu_switching_list.h',
40 'config/gpu_switching_option.h',
41 'config/gpu_util.cc',
42 'config/gpu_util.h',
43 'config/software_rendering_list_json.cc',
44 ],
45 'conditions': [
46 ['OS=="win"', {
47 'dependencies': [
48 '../third_party/libxml/libxml.gyp:libxml',
49 ],
50 'link_settings': {
51 'libraries': [
52 '-lsetupapi.lib',
53 ],
54 },
55 }],
56 ['OS=="win" and branding=="Chrome"', {
57 'sources': [
58 '../third_party/amd/AmdCfxPxExt.h',
59 '../third_party/amd/amd_videocard_info_win.cc',
60 ],
61 }],
62 ['OS=="linux" and use_x11==1', {
63 'dependencies': [
64 '../build/linux/system.gyp:libpci',
65 '../third_party/libXNVCtrl/libXNVCtrl.gyp:libXNVCtrl',
66 ],
67 }],
68 ],
69 }
OLDNEW
« no previous file with comments | « gpu/gpu.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698