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

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

Issue 12742005: Added text line limits to collapsed and expanded notifications. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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/message_center/views/notification_view.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) 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 'target_defaults': { 8 'target_defaults': {
9 'conditions': [ 9 'conditions': [
10 ['use_aura==1', { 10 ['use_aura==1', {
(...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after
616 'views', 616 'views',
617 ], 617 ],
618 'include_dirs': [ 618 'include_dirs': [
619 '..', 619 '..',
620 ], 620 ],
621 'sources': [ 621 'sources': [
622 'test/webview_test_helper.cc', 622 'test/webview_test_helper.cc',
623 'test/webview_test_helper.h', 623 'test/webview_test_helper.h',
624 ], 624 ],
625 }, # target_name: views_with_content_test_support 625 }, # target_name: views_with_content_test_support
626 # Include this target for a main() function that instantiates and runs a
627 # base::TestSuite subclass with resource support for views unit tests.
628 {
629 'target_name': 'run_all_unittests',
630 'type': 'static_library',
631 'dependencies': [
632 '../../base/base.gyp:test_support_base',
633 '../../skia/skia.gyp:skia',
634 '../../testing/gtest.gyp:gtest',
635 '../compositor/compositor.gyp:compositor',
636 '../compositor/compositor.gyp:compositor_test_support',
637 '../views/views.gyp:views',
638 ],
639 'sources': [
640 'run_all_unittests.cc',
641 ],
642 },
dharcourt 2013/03/14 20:21:57 This target is used as a dependency of ui/message_
626 { 643 {
627 'target_name': 'views_unittests', 644 'target_name': 'views_unittests',
628 'type': 'executable', 645 'type': 'executable',
629 'dependencies': [ 646 'dependencies': [
630 '../../base/base.gyp:base', 647 '../../base/base.gyp:base',
631 '../../base/base.gyp:base_i18n', 648 '../../base/base.gyp:base_i18n',
632 '../../base/base.gyp:test_support_base', 649 '../../base/base.gyp:test_support_base',
633 # TODO(jcivelli): ideally the resource needed by views would be 650 # TODO(jcivelli): ideally the resource needed by views would be
634 # factored out. (for some reason it pulls in a bunch 651 # factored out. (for some reason it pulls in a bunch
635 # unrelated things like v8, sqlite nss...). 652 # unrelated things like v8, sqlite nss...).
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after
982 'sources/': [ 999 'sources/': [
983 # This is needed because the aura rule strips it from the default 1000 # This is needed because the aura rule strips it from the default
984 # sources list. 1001 # sources list.
985 ['include', '^../../content/app/startup_helper_win.cc'], 1002 ['include', '^../../content/app/startup_helper_win.cc'],
986 ], 1003 ],
987 }], 1004 }],
988 ], 1005 ],
989 }, # target_name: views_examples_with_content_exe 1006 }, # target_name: views_examples_with_content_exe
990 ], 1007 ],
991 } 1008 }
OLDNEW
« no previous file with comments | « ui/message_center/views/notification_view.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698