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

Side by Side Diff: ui/views/views.gyp

Issue 8805033: Makes tests either use mock compositor or mock WebGraphicsContext3D (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Incorporate review feedback and tweaks for win_aura Created 9 years 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 | « ui/views/view_unittest.cc ('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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 8
9 'target_defaults': { 9 'target_defaults': {
10 'conditions': [ 10 'conditions': [
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 # unrelated things like v8, sqlite nss...). 491 # unrelated things like v8, sqlite nss...).
492 '../../chrome/chrome_resources.gyp:packed_resources', 492 '../../chrome/chrome_resources.gyp:packed_resources',
493 '../../build/temp_gyp/googleurl.gyp:googleurl', 493 '../../build/temp_gyp/googleurl.gyp:googleurl',
494 '../../skia/skia.gyp:skia', 494 '../../skia/skia.gyp:skia',
495 '../../testing/gmock.gyp:gmock', 495 '../../testing/gmock.gyp:gmock',
496 '../../testing/gtest.gyp:gtest', 496 '../../testing/gtest.gyp:gtest',
497 '../../third_party/icu/icu.gyp:icui18n', 497 '../../third_party/icu/icu.gyp:icui18n',
498 '../../third_party/icu/icu.gyp:icuuc', 498 '../../third_party/icu/icu.gyp:icuuc',
499 '../base/strings/ui_strings.gyp:ui_strings', 499 '../base/strings/ui_strings.gyp:ui_strings',
500 '../gfx/compositor/compositor.gyp:compositor_test_support', 500 '../gfx/compositor/compositor.gyp:compositor_test_support',
501 '../gfx/compositor/compositor.gyp:test_compositor',
502 '../ui.gyp:gfx_resources', 501 '../ui.gyp:gfx_resources',
503 '../ui.gyp:ui', 502 '../ui.gyp:ui',
504 '../ui.gyp:ui_resources', 503 '../ui.gyp:ui_resources',
505 '../ui.gyp:ui_resources_standard', 504 '../ui.gyp:ui_resources_standard',
506 'views', 505 'views',
507 ], 506 ],
508 'include_dirs': [ 507 'include_dirs': [
509 '..', 508 '..',
510 ], 509 ],
511 'sources': [ 510 'sources': [
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
587 ['exclude', 'controls/table/table_view_unittest.cc'], 586 ['exclude', 'controls/table/table_view_unittest.cc'],
588 ['exclude', 'widget/native_widget_win_unittest.cc'], 587 ['exclude', 'widget/native_widget_win_unittest.cc'],
589 ], 588 ],
590 }, { 589 }, {
591 'sources/': [ 590 'sources/': [
592 ['exclude', '../aura/test/test_desktop_delegate.cc'], 591 ['exclude', '../aura/test/test_desktop_delegate.cc'],
593 ['exclude', '../aura/test/test_desktop_delegate.h'], 592 ['exclude', '../aura/test/test_desktop_delegate.h'],
594 ['exclude', 'test/test_tooltip_client.cc'], 593 ['exclude', 'test/test_tooltip_client.cc'],
595 ], 594 ],
596 }], 595 }],
596 ['use_webkit_compositor==1', {
597 'dependencies': [
598 '../gfx/compositor/compositor.gyp:compositor',
599 ],
600 }, { # use_webkit_compositor!=1
601 'dependencies': [
602 '../gfx/compositor/compositor.gyp:test_compositor',
603 ],
604 }],
597 ], 605 ],
598 }, # target_name: views_unittests 606 }, # target_name: views_unittests
599 { 607 {
600 'target_name': 'views_examples_lib', 608 'target_name': 'views_examples_lib',
601 'type': 'static_library', 609 'type': 'static_library',
602 'dependencies': [ 610 'dependencies': [
603 '../../base/base.gyp:base', 611 '../../base/base.gyp:base',
604 '../../base/base.gyp:base_i18n', 612 '../../base/base.gyp:base_i18n',
605 '../../chrome/chrome_resources.gyp:packed_resources', 613 '../../chrome/chrome_resources.gyp:packed_resources',
606 '../../skia/skia.gyp:skia', 614 '../../skia/skia.gyp:skia',
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
738 'msvs_settings': { 746 'msvs_settings': {
739 'VCManifestTool': { 747 'VCManifestTool': {
740 'AdditionalManifestFiles': 'examples\\views_examples.exe.manifest' , 748 'AdditionalManifestFiles': 'examples\\views_examples.exe.manifest' ,
741 }, 749 },
742 }, 750 },
743 }], 751 }],
744 ], 752 ],
745 }, # target_name: views_examples_lib 753 }, # target_name: views_examples_lib
746 ], 754 ],
747 } 755 }
OLDNEW
« no previous file with comments | « ui/views/view_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698