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

Side by Side Diff: cc/cc_tests.gyp

Issue 1242323004: Add missing dependencies. (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Added comment, migrated all osmesa dependencies Created 5 years, 5 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
« no previous file with comments | « no previous file | chrome/chrome_tests_unit.gypi » ('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 'chromium_code': 1, 7 'chromium_code': 1,
8 'cc_unit_tests_source_files': [ 8 'cc_unit_tests_source_files': [
9 'animation/animation_host_unittest.cc', 9 'animation/animation_host_unittest.cc',
10 'animation/animation_player_unittest.cc', 10 'animation/animation_player_unittest.cc',
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 '../media/media.gyp:media', 287 '../media/media.gyp:media',
288 '../skia/skia.gyp:skia', 288 '../skia/skia.gyp:skia',
289 '../testing/gmock.gyp:gmock', 289 '../testing/gmock.gyp:gmock',
290 '../testing/gtest.gyp:gtest', 290 '../testing/gtest.gyp:gtest',
291 '../ui/events/events.gyp:events_base', 291 '../ui/events/events.gyp:events_base',
292 '../ui/gfx/gfx.gyp:gfx', 292 '../ui/gfx/gfx.gyp:gfx',
293 '../ui/gfx/gfx.gyp:gfx_geometry', 293 '../ui/gfx/gfx.gyp:gfx_geometry',
294 'cc.gyp:cc', 294 'cc.gyp:cc',
295 'cc.gyp:cc_surfaces', 295 'cc.gyp:cc_surfaces',
296 'cc_test_support', 296 'cc_test_support',
297 # Only needed at runtime.
298 '../third_party/mesa/mesa.gyp:osmesa',
danakj 2015/07/22 19:01:48 How come you need this if the cc_test_support has
M-A Ruel 2015/07/22 19:06:27 Good catch, removed.
297 ], 299 ],
298 'sources': [ 300 'sources': [
299 'test/cc_test_suite.cc', 301 'test/cc_test_suite.cc',
300 'test/run_all_unittests.cc', 302 'test/run_all_unittests.cc',
301 '<@(cc_unit_tests_source_files)', 303 '<@(cc_unit_tests_source_files)',
302 '<@(cc_surfaces_unit_tests_source_files)', 304 '<@(cc_surfaces_unit_tests_source_files)',
303 ], 305 ],
304 'include_dirs': [ 306 'include_dirs': [
305 'test', 307 'test',
306 '.', 308 '.',
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 '../gpu/command_buffer/command_buffer.gyp:gles2_utils', 404 '../gpu/command_buffer/command_buffer.gyp:gles2_utils',
403 '../gpu/gpu.gyp:gles2_c_lib', 405 '../gpu/gpu.gyp:gles2_c_lib',
404 '../gpu/gpu.gyp:gles2_implementation', 406 '../gpu/gpu.gyp:gles2_implementation',
405 '../gpu/gpu.gyp:gl_in_process_context', 407 '../gpu/gpu.gyp:gl_in_process_context',
406 '../gpu/gpu.gyp:gpu', 408 '../gpu/gpu.gyp:gpu',
407 '../gpu/gpu.gyp:gpu_unittest_utils', 409 '../gpu/gpu.gyp:gpu_unittest_utils',
408 '../gpu/skia_bindings/skia_bindings.gyp:gpu_skia_bindings', 410 '../gpu/skia_bindings/skia_bindings.gyp:gpu_skia_bindings',
409 '../skia/skia.gyp:skia', 411 '../skia/skia.gyp:skia',
410 '../testing/gmock.gyp:gmock', 412 '../testing/gmock.gyp:gmock',
411 '../testing/gtest.gyp:gtest', 413 '../testing/gtest.gyp:gtest',
412 '../third_party/mesa/mesa.gyp:osmesa',
413 '../ui/gfx/gfx.gyp:gfx', 414 '../ui/gfx/gfx.gyp:gfx',
414 '../ui/gfx/gfx.gyp:gfx_geometry', 415 '../ui/gfx/gfx.gyp:gfx_geometry',
415 '../ui/gfx/gfx.gyp:gfx_test_support', 416 '../ui/gfx/gfx.gyp:gfx_test_support',
416 '../ui/gl/gl.gyp:gl', 417 '../ui/gl/gl.gyp:gl',
417 '../ui/gl/gl.gyp:gl_test_support', 418 '../ui/gl/gl.gyp:gl_test_support',
419 # Only needed at runtime.
420 '../third_party/mesa/mesa.gyp:osmesa',
418 ], 421 ],
419 'sources': [ 422 'sources': [
420 '<@(cc_tests_support_files)', 423 '<@(cc_tests_support_files)',
421 ], 424 ],
422 }, 425 },
423 ], 426 ],
424 'conditions': [ 427 'conditions': [
425 ['OS == "android"', 428 ['OS == "android"',
426 { 429 {
427 'targets': [ 430 'targets': [
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 476 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
474 ], 477 ],
475 } 478 }
476 ], 479 ],
477 ], 480 ],
478 }, 481 },
479 ], 482 ],
480 }], 483 }],
481 ], 484 ],
482 } 485 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698