| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # GYP-to-GN project mappings: | 5 # GYP-to-GN project mappings: |
| 6 # | 6 # |
| 7 # gpu.gyp:command_buffer_client => //gpu/command_buffer/client | 7 # gpu.gyp:command_buffer_client => //gpu/command_buffer/client |
| 8 # | 8 # |
| 9 # gpu.gyp:command_buffer_common => //gpu/command_buffer/common | 9 # gpu.gyp:command_buffer_common => //gpu/command_buffer/common |
| 10 # | 10 # |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 "config/gpu_control_list_unittest.cc", | 224 "config/gpu_control_list_unittest.cc", |
| 225 "config/gpu_control_list_version_info_unittest.cc", | 225 "config/gpu_control_list_version_info_unittest.cc", |
| 226 "config/gpu_driver_bug_list_unittest.cc", | 226 "config/gpu_driver_bug_list_unittest.cc", |
| 227 "config/gpu_info_collector_unittest.cc", | 227 "config/gpu_info_collector_unittest.cc", |
| 228 "config/gpu_info_unittest.cc", | 228 "config/gpu_info_unittest.cc", |
| 229 "config/gpu_test_config_unittest.cc", | 229 "config/gpu_test_config_unittest.cc", |
| 230 "config/gpu_test_expectations_parser_unittest.cc", | 230 "config/gpu_test_expectations_parser_unittest.cc", |
| 231 "config/gpu_util_unittest.cc", | 231 "config/gpu_util_unittest.cc", |
| 232 ] | 232 ] |
| 233 | 233 |
| 234 configs += [ | 234 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 235 "//build/config:precompiled_headers", | |
| 236 | |
| 237 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | |
| 238 "//build/config/compiler:no_size_t_to_int_warning", | |
| 239 ] | |
| 240 | 235 |
| 241 deps = [ | 236 deps = [ |
| 242 ":gpu", | 237 ":gpu", |
| 243 ":test_support", | 238 ":test_support", |
| 244 "//base", | 239 "//base", |
| 245 "//base/test:test_support", | 240 "//base/test:test_support", |
| 246 "//base/third_party/dynamic_annotations", | 241 "//base/third_party/dynamic_annotations", |
| 247 "//testing/gmock", | 242 "//testing/gmock", |
| 248 "//testing/gtest", | 243 "//testing/gtest", |
| 249 "//third_party/angle:translator", | 244 "//third_party/angle:translator", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 | 289 |
| 295 deps = [ | 290 deps = [ |
| 296 "//base", | 291 "//base", |
| 297 "//base/test:test_support", | 292 "//base/test:test_support", |
| 298 "//base/third_party/dynamic_annotations", | 293 "//base/third_party/dynamic_annotations", |
| 299 "//testing/gmock", | 294 "//testing/gmock", |
| 300 "//testing/gtest", | 295 "//testing/gtest", |
| 301 "//third_party/angle:translator_static", | 296 "//third_party/angle:translator_static", |
| 302 ] | 297 ] |
| 303 } | 298 } |
| OLD | NEW |