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

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

Issue 10535046: Add Windows commandline switch --enable-views-textfield. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Revert TextfieldController change. Created 8 years, 6 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
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 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 'test/webview_test_helper.cc', 476 'test/webview_test_helper.cc',
477 'test/webview_test_helper.h', 477 'test/webview_test_helper.h',
478 ], 478 ],
479 }, # target_name: test_support_views 479 }, # target_name: test_support_views
480 { 480 {
481 'target_name': 'views_unittests', 481 'target_name': 'views_unittests',
482 'type': 'executable', 482 'type': 'executable',
483 'dependencies': [ 483 'dependencies': [
484 '../../base/base.gyp:base', 484 '../../base/base.gyp:base',
485 '../../base/base.gyp:test_support_base', 485 '../../base/base.gyp:test_support_base',
486 '../../base/allocator/allocator.gyp:allocator',
486 # TODO(jcivelli): ideally the resource needed by views would be 487 # TODO(jcivelli): ideally the resource needed by views would be
487 # factored out. (for some reason it pulls in a bunch 488 # factored out. (for some reason it pulls in a bunch
488 # unrelated things like v8, sqlite nss...). 489 # unrelated things like v8, sqlite nss...).
489 '../../chrome/chrome_resources.gyp:packed_resources', 490 '../../chrome/chrome_resources.gyp:packed_resources',
490 '../../build/temp_gyp/googleurl.gyp:googleurl', 491 '../../build/temp_gyp/googleurl.gyp:googleurl',
491 '../../skia/skia.gyp:skia', 492 '../../skia/skia.gyp:skia',
492 '../../testing/gmock.gyp:gmock', 493 '../../testing/gmock.gyp:gmock',
493 '../../testing/gtest.gyp:gtest', 494 '../../testing/gtest.gyp:gtest',
494 '../../third_party/icu/icu.gyp:icui18n', 495 '../../third_party/icu/icu.gyp:icui18n',
495 '../../third_party/icu/icu.gyp:icuuc', 496 '../../third_party/icu/icu.gyp:icuuc',
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 '-loleacc.lib', 556 '-loleacc.lib',
556 ] 557 ]
557 }, 558 },
558 'include_dirs': [ 559 'include_dirs': [
559 '../third_party/wtl/include', 560 '../third_party/wtl/include',
560 ], 561 ],
561 }], 562 }],
562 ['use_aura==0 and OS=="win"', { 563 ['use_aura==0 and OS=="win"', {
563 'sources/': [ 564 'sources/': [
564 ['exclude', 'controls/combobox/native_combobox_views_unittest.cc'], 565 ['exclude', 'controls/combobox/native_combobox_views_unittest.cc'],
565 ['exclude', 'controls/textfield/native_textfield_views_unittest.cc'] ,
566 ['exclude', 'controls/tree/tree_view_views_unittest.cc'], 566 ['exclude', 'controls/tree/tree_view_views_unittest.cc'],
567 ], 567 ],
568 }], 568 }],
569 [ 'use_aura==1', { 569 [ 'use_aura==1', {
570 'dependencies': [ 570 'dependencies': [
571 '../aura/aura.gyp:test_support_aura', 571 '../aura/aura.gyp:test_support_aura',
572 ], 572 ],
573 'sources/': [ 573 'sources/': [
574 ['exclude', 'controls/tabbed_pane/tabbed_pane_unittest.cc'], 574 ['exclude', 'controls/tabbed_pane/tabbed_pane_unittest.cc'],
575 ['exclude', 'controls/table/table_view_unittest.cc'], 575 ['exclude', 'controls/table/table_view_unittest.cc'],
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
732 'sources/': [ 732 'sources/': [
733 # This is needed because the aura rule strips it from the default 733 # This is needed because the aura rule strips it from the default
734 # sources list. 734 # sources list.
735 ['include', '^../../content/app/startup_helper_win.cc'], 735 ['include', '^../../content/app/startup_helper_win.cc'],
736 ], 736 ],
737 }], 737 }],
738 ], 738 ],
739 }, # target_name: views_examples_lib 739 }, # target_name: views_examples_lib
740 ], 740 ],
741 } 741 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698