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

Side by Side Diff: ui/views/views.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 | « ui/app_list/app_list.gyp ('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) 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 '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 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 'win/hwnd_message_handler_delegate.h', 497 'win/hwnd_message_handler_delegate.h',
498 'win/scoped_fullscreen_visibility.cc', 498 'win/scoped_fullscreen_visibility.cc',
499 'win/scoped_fullscreen_visibility.h', 499 'win/scoped_fullscreen_visibility.h',
500 'widget/widget_hwnd_utils.cc', 500 'widget/widget_hwnd_utils.cc',
501 'widget/widget_hwnd_utils.h', 501 'widget/widget_hwnd_utils.h',
502 ], 502 ],
503 }], 503 }],
504 ], 504 ],
505 }, # target_name: views 505 }, # target_name: views
506 { 506 {
507 'target_name': 'test_support_views', 507 'target_name': 'views_test_support',
508 'type': 'static_library', 508 'type': 'static_library',
509 'dependencies': [ 509 'dependencies': [
510 '../../base/base.gyp:base', 510 '../../base/base.gyp:base',
511 '../../content/content.gyp:content',
512 '../../content/content.gyp:test_support_content',
513 '../../ipc/ipc.gyp:test_support_ipc', 511 '../../ipc/ipc.gyp:test_support_ipc',
514 '../../skia/skia.gyp:skia', 512 '../../skia/skia.gyp:skia',
515 '../../testing/gtest.gyp:gtest', 513 '../../testing/gtest.gyp:gtest',
516 '../ui.gyp:ui', 514 '../ui.gyp:ui',
517 'controls/webview/webview.gyp:webview',
518 'views', 515 'views',
519 ], 516 ],
520 'include_dirs': [ 517 'include_dirs': [
521 '..', 518 '..',
522 ], 519 ],
523 'sources': [ 520 'sources': [
524 'test/test_views_delegate.cc', 521 'test/test_views_delegate.cc',
525 'test/test_views_delegate.h', 522 'test/test_views_delegate.h',
526 'test/views_test_base.cc', 523 'test/views_test_base.cc',
527 'test/views_test_base.h', 524 'test/views_test_base.h',
525 ],
526 }, # target_name: views_test_support
527 {
528 'target_name': 'views_with_content_test_support',
529 'type': 'static_library',
530 'dependencies': [
531 '../../base/base.gyp:base',
532 '../../content/content.gyp:content',
533 '../../content/content.gyp:test_support_content',
534 '../../ipc/ipc.gyp:test_support_ipc',
535 '../../skia/skia.gyp:skia',
536 '../../testing/gtest.gyp:gtest',
537 '../ui.gyp:ui',
538 'controls/webview/webview.gyp:webview',
539 'views_test_support',
540 'views',
541 ],
542 'include_dirs': [
543 '..',
544 ],
545 'sources': [
528 'test/webview_test_helper.cc', 546 'test/webview_test_helper.cc',
529 'test/webview_test_helper.h', 547 'test/webview_test_helper.h',
530 ], 548 ],
531 }, # target_name: test_support_views 549 }, # target_name: views_with_content_test_support
532 { 550 {
533 'target_name': 'views_unittests', 551 'target_name': 'views_unittests',
534 'type': 'executable', 552 'type': 'executable',
535 'dependencies': [ 553 'dependencies': [
536 '../../base/base.gyp:base', 554 '../../base/base.gyp:base',
537 '../../base/base.gyp:test_support_base', 555 '../../base/base.gyp:test_support_base',
538 # TODO(jcivelli): ideally the resource needed by views would be 556 # TODO(jcivelli): ideally the resource needed by views would be
539 # factored out. (for some reason it pulls in a bunch 557 # factored out. (for some reason it pulls in a bunch
540 # unrelated things like v8, sqlite nss...). 558 # unrelated things like v8, sqlite nss...).
541 '../../chrome/chrome_resources.gyp:packed_resources', 559 '../../chrome/chrome_resources.gyp:packed_resources',
542 '../../build/temp_gyp/googleurl.gyp:googleurl', 560 '../../build/temp_gyp/googleurl.gyp:googleurl',
543 '../../skia/skia.gyp:skia', 561 '../../skia/skia.gyp:skia',
544 '../../testing/gmock.gyp:gmock', 562 '../../testing/gmock.gyp:gmock',
545 '../../testing/gtest.gyp:gtest', 563 '../../testing/gtest.gyp:gtest',
546 '../../third_party/icu/icu.gyp:icui18n', 564 '../../third_party/icu/icu.gyp:icui18n',
547 '../../third_party/icu/icu.gyp:icuuc', 565 '../../third_party/icu/icu.gyp:icuuc',
548 '../base/strings/ui_strings.gyp:ui_strings', 566 '../base/strings/ui_strings.gyp:ui_strings',
549 '../compositor/compositor.gyp:compositor', 567 '../compositor/compositor.gyp:compositor',
550 '../compositor/compositor.gyp:compositor_test_support', 568 '../compositor/compositor.gyp:compositor_test_support',
551 '../ui.gyp:ui', 569 '../ui.gyp:ui',
552 '../ui.gyp:ui_resources', 570 '../ui.gyp:ui_resources',
553 '../ui.gyp:ui_test_support', 571 '../ui.gyp:ui_test_support',
554 'test_support_views',
555 'views', 572 'views',
573 'views_test_support',
556 ], 574 ],
557 'include_dirs': [ 575 'include_dirs': [
558 '..', 576 '..',
559 ], 577 ],
560 'sources': [ 578 'sources': [
561 'accessible_pane_view_unittest.cc', 579 'accessible_pane_view_unittest.cc',
562 'animation/bounds_animator_unittest.cc', 580 'animation/bounds_animator_unittest.cc',
563 'bubble/bubble_border_unittest.cc', 581 'bubble/bubble_border_unittest.cc',
564 'bubble/bubble_delegate_unittest.cc', 582 'bubble/bubble_delegate_unittest.cc',
565 'bubble/bubble_frame_view_unittest.cc', 583 'bubble/bubble_frame_view_unittest.cc',
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
865 'sources/': [ 883 'sources/': [
866 # This is needed because the aura rule strips it from the default 884 # This is needed because the aura rule strips it from the default
867 # sources list. 885 # sources list.
868 ['include', '^../../content/app/startup_helper_win.cc'], 886 ['include', '^../../content/app/startup_helper_win.cc'],
869 ], 887 ],
870 }], 888 }],
871 ], 889 ],
872 }, # target_name: views_examples_with_content_exe 890 }, # target_name: views_examples_with_content_exe
873 ], 891 ],
874 } 892 }
OLDNEW
« no previous file with comments | « ui/app_list/app_list.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698