OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 }, | 8 }, |
9 | 9 |
10 'target_defaults': { | 10 'target_defaults': { |
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
467 'focus/accelerator_handler_gtk_unittest.cc', | 467 'focus/accelerator_handler_gtk_unittest.cc', |
468 'focus/focus_manager_unittest.cc', | 468 'focus/focus_manager_unittest.cc', |
469 'ime/character_composer_unittest.cc', | 469 'ime/character_composer_unittest.cc', |
470 'layout/grid_layout_unittest.cc', | 470 'layout/grid_layout_unittest.cc', |
471 'layout/box_layout_unittest.cc', | 471 'layout/box_layout_unittest.cc', |
472 'test/views_test_base.cc', | 472 'test/views_test_base.cc', |
473 'test/views_test_base.h', | 473 'test/views_test_base.h', |
474 'run_all_unittests.cc', | 474 'run_all_unittests.cc', |
475 'test/test_views_delegate.cc', | 475 'test/test_views_delegate.cc', |
476 'test/test_views_delegate.h', | 476 'test/test_views_delegate.h', |
| 477 'touchui/touch_selection_controller_impl_unittest.cc', |
477 'view_unittest.cc', | 478 'view_unittest.cc', |
478 'widget/native_widget_test_utils.h', | 479 'widget/native_widget_test_utils.h', |
479 'widget/native_widget_test_utils_gtk.cc', | 480 'widget/native_widget_test_utils_gtk.cc', |
480 'widget/native_widget_test_utils_win.cc', | 481 'widget/native_widget_test_utils_win.cc', |
481 'widget/native_widget_unittest.cc', | 482 'widget/native_widget_unittest.cc', |
482 'widget/native_widget_win_unittest.cc', | 483 'widget/native_widget_win_unittest.cc', |
483 'widget/widget_unittest.cc', | 484 'widget/widget_unittest.cc', |
484 | 485 |
485 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 486 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
486 ], | 487 ], |
487 'conditions': [ | 488 'conditions': [ |
488 ['toolkit_uses_gtk == 1', { | 489 ['toolkit_uses_gtk == 1', { |
489 'dependencies': [ | 490 'dependencies': [ |
490 '../build/linux/system.gyp:gtk', | 491 '../build/linux/system.gyp:gtk', |
491 '../chrome/chrome.gyp:packed_resources', | 492 '../chrome/chrome.gyp:packed_resources', |
492 ], | 493 ], |
493 'conditions': [ | 494 'conditions': [ |
494 ['linux_use_tcmalloc==1', { | 495 ['linux_use_tcmalloc==1', { |
495 'dependencies': [ | 496 'dependencies': [ |
496 '../base/allocator/allocator.gyp:allocator', | 497 '../base/allocator/allocator.gyp:allocator', |
497 ], | 498 ], |
498 }], | 499 }], |
499 [ 'touchui==1', { | 500 [ 'touchui==1', { |
500 'sources!': [ 'focus/accelerator_handler_gtk_unittest.cc' ], | 501 'sources!': [ 'focus/accelerator_handler_gtk_unittest.cc' ], |
501 }], | 502 }], |
502 ], | 503 ], |
503 }, | 504 }, |
504 ], | 505 ], |
| 506 ['touchui==0', { |
| 507 'sources!': [ |
| 508 'touchui/touch_selection_controller_impl_unittest.cc', |
| 509 ], |
| 510 }], |
505 ['OS=="win"', { | 511 ['OS=="win"', { |
506 'dependencies': [ | 512 'dependencies': [ |
507 # TODO(jcivelli): ideally the resource needed by views would be | 513 # TODO(jcivelli): ideally the resource needed by views would be |
508 # factored out. (for some reason it pulls in a bunch | 514 # factored out. (for some reason it pulls in a bunch |
509 # unrelated things like v8, sqlite nss...). | 515 # unrelated things like v8, sqlite nss...). |
510 '../chrome/app/locales/locales.gyp:en-US', | 516 '../chrome/app/locales/locales.gyp:en-US', |
511 ], | 517 ], |
512 'link_settings': { | 518 'link_settings': { |
513 'libraries': [ | 519 'libraries': [ |
514 '-limm32.lib', | 520 '-limm32.lib', |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
719 'include_dirs': [ | 725 'include_dirs': [ |
720 '<(DEPTH)/third_party/wtl/include', | 726 '<(DEPTH)/third_party/wtl/include', |
721 ], | 727 ], |
722 }], | 728 }], |
723 ], | 729 ], |
724 }, | 730 }, |
725 | 731 |
726 | 732 |
727 ], | 733 ], |
728 } | 734 } |
OLD | NEW |