| OLD | NEW |
| 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 ], |
| 11 'include_dirs': [ | 11 'include_dirs': [ |
| 12 '..', | 12 '..', |
| 13 ], | 13 ], |
| 14 'sources': [ | 14 'sources': [ |
| 15 'config/dx_diag_node.cc', | 15 'config/dx_diag_node.cc', |
| 16 'config/dx_diag_node.h', | 16 'config/dx_diag_node.h', |
| 17 'config/gpu_blacklist.cc', | 17 'config/gpu_blacklist.cc', |
| 18 'config/gpu_blacklist.h', | 18 'config/gpu_blacklist.h', |
| 19 'config/gpu_control_list.cc', | 19 'config/gpu_control_list.cc', |
| 20 'config/gpu_control_list.h', | 20 'config/gpu_control_list.h', |
| 21 'config/gpu_control_list_jsons.h', | 21 'config/gpu_control_list_jsons.h', |
| 22 'config/gpu_driver_bug_list.cc', | 22 'config/gpu_driver_bug_list.cc', |
| 23 'config/gpu_driver_bug_list.h', | 23 'config/gpu_driver_bug_list.h', |
| 24 'config/gpu_driver_bug_list_json.cc', | 24 'config/gpu_driver_bug_list_json.cc', |
| 25 'config/gpu_driver_bug_workaround_type.h', | 25 'config/gpu_driver_bug_workaround_type.h', |
| 26 'config/gpu_driver_bug_workarounds.cc', | |
| 27 'config/gpu_driver_bug_workarounds.h', | |
| 28 'config/gpu_dx_diagnostics_win.cc', | 26 'config/gpu_dx_diagnostics_win.cc', |
| 29 'config/gpu_feature_type.h', | 27 'config/gpu_feature_type.h', |
| 30 'config/gpu_info.cc', | 28 'config/gpu_info.cc', |
| 31 'config/gpu_info.h', | 29 'config/gpu_info.h', |
| 32 'config/gpu_info_collector.cc', | 30 'config/gpu_info_collector.cc', |
| 33 'config/gpu_info_collector.h', | 31 'config/gpu_info_collector.h', |
| 34 'config/gpu_info_collector_android.cc', | 32 'config/gpu_info_collector_android.cc', |
| 35 'config/gpu_info_collector_linux.cc', | 33 'config/gpu_info_collector_linux.cc', |
| 36 'config/gpu_info_collector_linux.h', | 34 'config/gpu_info_collector_linux.h', |
| 37 'config/gpu_info_collector_mac.mm', | 35 'config/gpu_info_collector_mac.mm', |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 ['OS=="linux" and use_x11==1', { | 74 ['OS=="linux" and use_x11==1', { |
| 77 'dependencies': [ | 75 'dependencies': [ |
| 78 '../build/linux/system.gyp:x11', | 76 '../build/linux/system.gyp:x11', |
| 79 '../build/linux/system.gyp:xext', | 77 '../build/linux/system.gyp:xext', |
| 80 '../third_party/libXNVCtrl/libXNVCtrl.gyp:libXNVCtrl', | 78 '../third_party/libXNVCtrl/libXNVCtrl.gyp:libXNVCtrl', |
| 81 '../ui/gfx/x/gfx_x11.gyp:gfx_x11', | 79 '../ui/gfx/x/gfx_x11.gyp:gfx_x11', |
| 82 ], | 80 ], |
| 83 }], | 81 }], |
| 84 ], | 82 ], |
| 85 } | 83 } |
| OLD | NEW |