| OLD | NEW |
| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', | 8 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', |
| 9 }, | 9 }, |
| 10 'includes': [ | 10 'includes': [ |
| (...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 ], | 428 ], |
| 429 }, { # else: chromeos!=1 | 429 }, { # else: chromeos!=1 |
| 430 'sources/': [ | 430 'sources/': [ |
| 431 ['exclude', 'display/output_configurator_animation.cc'], | 431 ['exclude', 'display/output_configurator_animation.cc'], |
| 432 ['exclude', 'display/output_configurator_animation.h'], | 432 ['exclude', 'display/output_configurator_animation.h'], |
| 433 ], | 433 ], |
| 434 }], | 434 }], |
| 435 ], | 435 ], |
| 436 }, | 436 }, |
| 437 { | 437 { |
| 438 'target_name': 'test_support_ash', |
| 439 'type': 'static_library', |
| 440 'dependencies': [ |
| 441 '../skia/skia.gyp:skia', |
| 442 '../testing/gtest.gyp:gtest', |
| 443 'ash', |
| 444 'ash_resources', |
| 445 ], |
| 446 'sources': [ |
| 447 'test/ash_test_base.cc', |
| 448 'test/ash_test_base.h', |
| 449 'test/ash_unittests.cc', |
| 450 'test/capture_tracking_view.cc', |
| 451 'test/capture_tracking_view.h', |
| 452 'test/cursor_manager_test_api.cc', |
| 453 'test/cursor_manager_test_api.h', |
| 454 'test/launcher_view_test_api.cc', |
| 455 'test/launcher_view_test_api.h', |
| 456 'test/test_activation_delegate.cc', |
| 457 'test/test_activation_delegate.h', |
| 458 'test/test_launcher_delegate.cc', |
| 459 'test/test_launcher_delegate.h', |
| 460 'test/test_shell_delegate.cc', |
| 461 'test/test_shell_delegate.h', |
| 462 'test/test_suite.cc', |
| 463 'test/test_suite.h', |
| 464 'test/test_suite_init.h', |
| 465 'test/test_suite_init.mm', |
| 466 ], |
| 467 }, |
| 468 { |
| 438 'target_name': 'ash_unittests', | 469 'target_name': 'ash_unittests', |
| 439 'type': 'executable', | 470 'type': 'executable', |
| 440 'dependencies': [ | 471 'dependencies': [ |
| 441 '../base/base.gyp:base', | 472 '../base/base.gyp:base', |
| 442 '../base/base.gyp:test_support_base', | 473 '../base/base.gyp:test_support_base', |
| 443 '../chrome/chrome_resources.gyp:packed_resources', | 474 '../chrome/chrome_resources.gyp:packed_resources', |
| 444 '../content/content.gyp:content_browser', | 475 '../content/content.gyp:content_browser', |
| 445 '../content/content.gyp:test_support_content', | 476 '../content/content.gyp:test_support_content', |
| 446 '../build/temp_gyp/googleurl.gyp:googleurl', | 477 '../build/temp_gyp/googleurl.gyp:googleurl', |
| 447 '../skia/skia.gyp:skia', | 478 '../skia/skia.gyp:skia', |
| 448 '../testing/gtest.gyp:gtest', | 479 '../testing/gtest.gyp:gtest', |
| 449 '../third_party/icu/icu.gyp:icui18n', | 480 '../third_party/icu/icu.gyp:icui18n', |
| 450 '../third_party/icu/icu.gyp:icuuc', | 481 '../third_party/icu/icu.gyp:icuuc', |
| 451 '../ui/aura/aura.gyp:aura', | 482 '../ui/aura/aura.gyp:aura', |
| 452 '../ui/aura/aura.gyp:test_support_aura', | 483 '../ui/aura/aura.gyp:test_support_aura', |
| 453 '../ui/app_list/app_list.gyp:app_list', | 484 '../ui/app_list/app_list.gyp:app_list', |
| 454 '../ui/compositor/compositor.gyp:compositor', | 485 '../ui/compositor/compositor.gyp:compositor', |
| 455 '../ui/compositor/compositor.gyp:compositor_test_support', | 486 '../ui/compositor/compositor.gyp:compositor_test_support', |
| 456 '../ui/ui.gyp:ui', | 487 '../ui/ui.gyp:ui', |
| 457 '../ui/ui.gyp:ui_resources', | 488 '../ui/ui.gyp:ui_resources', |
| 458 '../ui/ui.gyp:ui_test_support', | 489 '../ui/ui.gyp:ui_test_support', |
| 459 '../ui/views/views.gyp:views', | 490 '../ui/views/views.gyp:views', |
| 460 '../ui/views/views.gyp:views_examples_with_content_lib', | 491 '../ui/views/views.gyp:views_examples_with_content_lib', |
| 461 '../ui/views/views.gyp:test_support_views', | 492 '../ui/views/views.gyp:test_support_views', |
| 462 'ash', | 493 'ash', |
| 463 'ash_resources', | 494 'ash_resources', |
| 495 'test_support_ash', |
| 464 ], | 496 ], |
| 465 'sources': [ | 497 'sources': [ |
| 466 '../ui/views/test/test_views_delegate.cc', | 498 '../ui/views/test/test_views_delegate.cc', |
| 467 '../ui/views/test/test_views_delegate.h', | 499 '../ui/views/test/test_views_delegate.h', |
| 468 'accelerators/accelerator_controller_unittest.cc', | 500 'accelerators/accelerator_controller_unittest.cc', |
| 469 'accelerators/accelerator_filter_unittest.cc', | 501 'accelerators/accelerator_filter_unittest.cc', |
| 470 'accelerators/accelerator_table_unittest.cc', | 502 'accelerators/accelerator_table_unittest.cc', |
| 471 'accelerators/nested_dispatcher_controller_unittest.cc', | 503 'accelerators/nested_dispatcher_controller_unittest.cc', |
| 472 'dip_unittest.cc', | 504 'dip_unittest.cc', |
| 473 'display/display_controller_unittest.cc', | 505 'display/display_controller_unittest.cc', |
| (...skipping 20 matching lines...) Expand all Loading... |
| 494 'shell/lock_view.cc', | 526 'shell/lock_view.cc', |
| 495 'shell/panel_window.cc', | 527 'shell/panel_window.cc', |
| 496 'shell/shell_delegate_impl.cc', | 528 'shell/shell_delegate_impl.cc', |
| 497 'shell/toplevel_window.cc', | 529 'shell/toplevel_window.cc', |
| 498 'shell/widgets.cc', | 530 'shell/widgets.cc', |
| 499 'shell/window_type_launcher.cc', | 531 'shell/window_type_launcher.cc', |
| 500 'shell/window_watcher.cc', | 532 'shell/window_watcher.cc', |
| 501 'shell/window_watcher_unittest.cc', | 533 'shell/window_watcher_unittest.cc', |
| 502 'system/tray/system_tray_unittest.cc', | 534 'system/tray/system_tray_unittest.cc', |
| 503 'system/web_notification/web_notification_tray_unittest.cc', | 535 'system/web_notification/web_notification_tray_unittest.cc', |
| 504 'test/ash_test_base.cc', | |
| 505 'test/ash_test_base.h', | |
| 506 'test/ash_unittests.cc', | |
| 507 'test/capture_tracking_view.cc', | |
| 508 'test/capture_tracking_view.h', | |
| 509 'test/cursor_manager_test_api.cc', | |
| 510 'test/cursor_manager_test_api.h', | |
| 511 'test/launcher_view_test_api.cc', | |
| 512 'test/launcher_view_test_api.h', | |
| 513 'test/test_activation_delegate.cc', | |
| 514 'test/test_activation_delegate.h', | |
| 515 'test/test_launcher_delegate.cc', | |
| 516 'test/test_launcher_delegate.h', | |
| 517 'test/test_shell_delegate.cc', | |
| 518 'test/test_shell_delegate.h', | |
| 519 'test/test_suite.cc', | |
| 520 'test/test_suite.h', | |
| 521 'test/test_suite_init.h', | |
| 522 'test/test_suite_init.mm', | |
| 523 'tooltips/tooltip_controller_unittest.cc', | 536 'tooltips/tooltip_controller_unittest.cc', |
| 524 'wm/activation_controller_unittest.cc', | 537 'wm/activation_controller_unittest.cc', |
| 525 'wm/base_layout_manager_unittest.cc', | 538 'wm/base_layout_manager_unittest.cc', |
| 526 'wm/cursor_manager_unittest.cc', | 539 'wm/cursor_manager_unittest.cc', |
| 527 'wm/custom_frame_view_ash_unittest.cc', | 540 'wm/custom_frame_view_ash_unittest.cc', |
| 528 'wm/frame_painter_unittest.cc', | 541 'wm/frame_painter_unittest.cc', |
| 529 'wm/image_grid_unittest.cc', | 542 'wm/image_grid_unittest.cc', |
| 530 'wm/panel_layout_manager_unittest.cc', | 543 'wm/panel_layout_manager_unittest.cc', |
| 531 'wm/power_button_controller_unittest.cc', | 544 'wm/power_button_controller_unittest.cc', |
| 532 'wm/screen_dimmer_unittest.cc', | 545 'wm/screen_dimmer_unittest.cc', |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 668 'shell/cocoa/app-Info.plist', | 681 'shell/cocoa/app-Info.plist', |
| 669 ], | 682 ], |
| 670 'xcode_settings': { | 683 'xcode_settings': { |
| 671 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist', | 684 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist', |
| 672 }, | 685 }, |
| 673 }], | 686 }], |
| 674 ], | 687 ], |
| 675 }, | 688 }, |
| 676 ], | 689 ], |
| 677 } | 690 } |
| OLD | NEW |