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

Side by Side Diff: ash/ash.gyp

Issue 11117009: views: Split test_support_views in two targets. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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 | « no previous file | chrome/chrome_tests.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 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', 8 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome',
9 }, 9 },
10 'includes': [ 10 'includes': [
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 '../ui/aura/aura.gyp:aura', 478 '../ui/aura/aura.gyp:aura',
479 '../ui/aura/aura.gyp:test_support_aura', 479 '../ui/aura/aura.gyp:test_support_aura',
480 '../ui/app_list/app_list.gyp:app_list', 480 '../ui/app_list/app_list.gyp:app_list',
481 '../ui/compositor/compositor.gyp:compositor', 481 '../ui/compositor/compositor.gyp:compositor',
482 '../ui/compositor/compositor.gyp:compositor_test_support', 482 '../ui/compositor/compositor.gyp:compositor_test_support',
483 '../ui/ui.gyp:ui', 483 '../ui/ui.gyp:ui',
484 '../ui/ui.gyp:ui_resources', 484 '../ui/ui.gyp:ui_resources',
485 '../ui/ui.gyp:ui_test_support', 485 '../ui/ui.gyp:ui_test_support',
486 '../ui/views/views.gyp:views', 486 '../ui/views/views.gyp:views',
487 '../ui/views/views.gyp:views_examples_with_content_lib', 487 '../ui/views/views.gyp:views_examples_with_content_lib',
488 '../ui/views/views.gyp:test_support_views', 488 '../ui/views/views.gyp:views_with_content_test_support',
489 'ash', 489 'ash',
490 'ash_resources', 490 'ash_resources',
491 'test_support_ash', 491 'test_support_ash',
492 ], 492 ],
493 'sources': [ 493 'sources': [
494 '../ui/views/test/test_views_delegate.cc', 494 '../ui/views/test/test_views_delegate.cc',
495 '../ui/views/test/test_views_delegate.h', 495 '../ui/views/test/test_views_delegate.h',
496 'accelerators/accelerator_controller_unittest.cc', 496 'accelerators/accelerator_controller_unittest.cc',
497 'accelerators/accelerator_filter_unittest.cc', 497 'accelerators/accelerator_filter_unittest.cc',
498 'accelerators/accelerator_table_unittest.cc', 498 'accelerators/accelerator_table_unittest.cc',
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
608 '../third_party/icu/icu.gyp:icui18n', 608 '../third_party/icu/icu.gyp:icui18n',
609 '../third_party/icu/icu.gyp:icuuc', 609 '../third_party/icu/icu.gyp:icuuc',
610 '../ui/app_list/app_list.gyp:app_list', 610 '../ui/app_list/app_list.gyp:app_list',
611 '../ui/aura/aura.gyp:aura', 611 '../ui/aura/aura.gyp:aura',
612 '../ui/compositor/compositor.gyp:compositor', 612 '../ui/compositor/compositor.gyp:compositor',
613 '../ui/compositor/compositor.gyp:compositor_test_support', 613 '../ui/compositor/compositor.gyp:compositor_test_support',
614 '../ui/ui.gyp:ui', 614 '../ui/ui.gyp:ui',
615 '../ui/ui.gyp:ui_resources', 615 '../ui/ui.gyp:ui_resources',
616 '../ui/views/views.gyp:views', 616 '../ui/views/views.gyp:views',
617 '../ui/views/views.gyp:views_examples_with_content_lib', 617 '../ui/views/views.gyp:views_examples_with_content_lib',
618 '../ui/views/views.gyp:test_support_views', 618 '../ui/views/views.gyp:views_test_support',
619 'ash', 619 'ash',
620 'ash_resources', 620 'ash_resources',
621 ], 621 ],
622 'sources': [ 622 'sources': [
623 'shell/app_list.cc', 623 'shell/app_list.cc',
624 'shell/bubble.cc', 624 'shell/bubble.cc',
625 'shell/content_client/shell_browser_main_parts.cc', 625 'shell/content_client/shell_browser_main_parts.cc',
626 'shell/content_client/shell_browser_main_parts.h', 626 'shell/content_client/shell_browser_main_parts.h',
627 'shell/content_client/shell_content_browser_client.cc', 627 'shell/content_client/shell_content_browser_client.cc',
628 'shell/content_client/shell_content_browser_client.h', 628 'shell/content_client/shell_content_browser_client.h',
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
680 'shell/cocoa/app-Info.plist', 680 'shell/cocoa/app-Info.plist',
681 ], 681 ],
682 'xcode_settings': { 682 'xcode_settings': {
683 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist', 683 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist',
684 }, 684 },
685 }], 685 }],
686 ], 686 ],
687 }, 687 },
688 ], 688 ],
689 } 689 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698