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

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: Remove unused includes. 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 'controls/table/table_view_views.h', 210 'controls/table/table_view_views.h',
211 'controls/table/table_view_win.cc', 211 'controls/table/table_view_win.cc',
212 'controls/table/table_view_win.h', 212 'controls/table/table_view_win.h',
213 'controls/textfield/native_textfield_views.cc', 213 'controls/textfield/native_textfield_views.cc',
214 'controls/textfield/native_textfield_views.h', 214 'controls/textfield/native_textfield_views.h',
215 'controls/textfield/native_textfield_win.cc', 215 'controls/textfield/native_textfield_win.cc',
216 'controls/textfield/native_textfield_win.h', 216 'controls/textfield/native_textfield_win.h',
217 'controls/textfield/native_textfield_wrapper.h', 217 'controls/textfield/native_textfield_wrapper.h',
218 'controls/textfield/textfield.cc', 218 'controls/textfield/textfield.cc',
219 'controls/textfield/textfield.h', 219 'controls/textfield/textfield.h',
220 'controls/textfield/textfield_controller.cc',
221 'controls/textfield/textfield_controller.h', 220 'controls/textfield/textfield_controller.h',
222 'controls/textfield/textfield_views_model.cc', 221 'controls/textfield/textfield_views_model.cc',
223 'controls/textfield/textfield_views_model.h', 222 'controls/textfield/textfield_views_model.h',
224 'controls/throbber.cc', 223 'controls/throbber.cc',
225 'controls/throbber.h', 224 'controls/throbber.h',
226 'controls/tree/tree_view.h', 225 'controls/tree/tree_view.h',
227 'controls/tree/tree_view_controller.cc', 226 'controls/tree/tree_view_controller.cc',
228 'controls/tree/tree_view_controller.h', 227 'controls/tree/tree_view_controller.h',
229 'controls/tree/tree_view_views.cc', 228 'controls/tree/tree_view_views.cc',
230 'controls/tree/tree_view_views.h', 229 'controls/tree/tree_view_views.h',
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 'test/webview_test_helper.cc', 475 'test/webview_test_helper.cc',
477 'test/webview_test_helper.h', 476 'test/webview_test_helper.h',
478 ], 477 ],
479 }, # target_name: test_support_views 478 }, # target_name: test_support_views
480 { 479 {
481 'target_name': 'views_unittests', 480 'target_name': 'views_unittests',
482 'type': 'executable', 481 'type': 'executable',
483 'dependencies': [ 482 'dependencies': [
484 '../../base/base.gyp:base', 483 '../../base/base.gyp:base',
485 '../../base/base.gyp:test_support_base', 484 '../../base/base.gyp:test_support_base',
485 '../../base/allocator/allocator.gyp:allocator',
486 # TODO(jcivelli): ideally the resource needed by views would be 486 # TODO(jcivelli): ideally the resource needed by views would be
487 # factored out. (for some reason it pulls in a bunch 487 # factored out. (for some reason it pulls in a bunch
488 # unrelated things like v8, sqlite nss...). 488 # unrelated things like v8, sqlite nss...).
489 '../../chrome/chrome_resources.gyp:packed_resources', 489 '../../chrome/chrome_resources.gyp:packed_resources',
490 '../../build/temp_gyp/googleurl.gyp:googleurl', 490 '../../build/temp_gyp/googleurl.gyp:googleurl',
491 '../../skia/skia.gyp:skia', 491 '../../skia/skia.gyp:skia',
492 '../../testing/gmock.gyp:gmock', 492 '../../testing/gmock.gyp:gmock',
493 '../../testing/gtest.gyp:gtest', 493 '../../testing/gtest.gyp:gtest',
494 '../../third_party/icu/icu.gyp:icui18n', 494 '../../third_party/icu/icu.gyp:icui18n',
495 '../../third_party/icu/icu.gyp:icuuc', 495 '../../third_party/icu/icu.gyp:icuuc',
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 '-loleacc.lib', 555 '-loleacc.lib',
556 ] 556 ]
557 }, 557 },
558 'include_dirs': [ 558 'include_dirs': [
559 '../third_party/wtl/include', 559 '../third_party/wtl/include',
560 ], 560 ],
561 }], 561 }],
562 ['use_aura==0 and OS=="win"', { 562 ['use_aura==0 and OS=="win"', {
563 'sources/': [ 563 'sources/': [
564 ['exclude', 'controls/combobox/native_combobox_views_unittest.cc'], 564 ['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'], 565 ['exclude', 'controls/tree/tree_view_views_unittest.cc'],
567 ], 566 ],
568 }], 567 }],
569 [ 'use_aura==1', { 568 [ 'use_aura==1', {
570 'dependencies': [ 569 'dependencies': [
571 '../aura/aura.gyp:test_support_aura', 570 '../aura/aura.gyp:test_support_aura',
572 ], 571 ],
573 'sources/': [ 572 'sources/': [
574 ['exclude', 'controls/tabbed_pane/tabbed_pane_unittest.cc'], 573 ['exclude', 'controls/tabbed_pane/tabbed_pane_unittest.cc'],
575 ['exclude', 'controls/table/table_view_unittest.cc'], 574 ['exclude', 'controls/table/table_view_unittest.cc'],
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
732 'sources/': [ 731 'sources/': [
733 # This is needed because the aura rule strips it from the default 732 # This is needed because the aura rule strips it from the default
734 # sources list. 733 # sources list.
735 ['include', '^../../content/app/startup_helper_win.cc'], 734 ['include', '^../../content/app/startup_helper_win.cc'],
736 ], 735 ],
737 }], 736 }],
738 ], 737 ],
739 }, # target_name: views_examples_lib 738 }, # target_name: views_examples_lib
740 ], 739 ],
741 } 740 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698