OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
(...skipping 3485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3496 '..', | 3496 '..', |
3497 ], | 3497 ], |
3498 'sources': [ | 3498 'sources': [ |
3499 'test/automated_ui_tests/automated_ui_test_base.cc', | 3499 'test/automated_ui_tests/automated_ui_test_base.cc', |
3500 'test/automated_ui_tests/automated_ui_test_base.h', | 3500 'test/automated_ui_tests/automated_ui_test_base.h', |
3501 'test/testing_browser_process.h', | 3501 'test/testing_browser_process.h', |
3502 'test/ui/javascript_test_util.cc', | 3502 'test/ui/javascript_test_util.cc', |
3503 'test/ui/npapi_test_helper.cc', | 3503 'test/ui/npapi_test_helper.cc', |
3504 'test/ui/npapi_test_helper.h', | 3504 'test/ui/npapi_test_helper.h', |
3505 'test/ui/run_all_unittests.cc', | 3505 'test/ui/run_all_unittests.cc', |
| 3506 'test/ui/ui_layout_test.cc', |
| 3507 'test/ui/ui_layout_test.h', |
3506 'test/ui/ui_test.cc', | 3508 'test/ui/ui_test.cc', |
3507 'test/ui/ui_test.h', | 3509 'test/ui/ui_test.h', |
3508 'test/ui/ui_test_suite.cc', | 3510 'test/ui/ui_test_suite.cc', |
3509 'test/ui/ui_test_suite.h', | 3511 'test/ui/ui_test_suite.h', |
3510 ], | 3512 ], |
3511 'conditions': [ | 3513 'conditions': [ |
3512 ['OS=="linux"', { | 3514 ['OS=="linux"', { |
3513 'dependencies': [ | 3515 'dependencies': [ |
3514 '../build/linux/system.gyp:gtk', | 3516 '../build/linux/system.gyp:gtk', |
3515 ], | 3517 ], |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3576 'sources': [ | 3578 'sources': [ |
3577 'app/chrome_main_uitest.cc', | 3579 'app/chrome_main_uitest.cc', |
3578 'browser/browser_uitest.cc', | 3580 'browser/browser_uitest.cc', |
3579 'browser/download/download_uitest.cc', | 3581 'browser/download/download_uitest.cc', |
3580 'browser/download/save_page_uitest.cc', | 3582 'browser/download/save_page_uitest.cc', |
3581 'browser/errorpage_uitest.cc', | 3583 'browser/errorpage_uitest.cc', |
3582 'browser/extensions/extension_uitest.cc', | 3584 'browser/extensions/extension_uitest.cc', |
3583 'browser/history/redirect_uitest.cc', | 3585 'browser/history/redirect_uitest.cc', |
3584 'browser/iframe_uitest.cc', | 3586 'browser/iframe_uitest.cc', |
3585 'browser/images_uitest.cc', | 3587 'browser/images_uitest.cc', |
| 3588 'browser/in_process_webkit/dom_storage_uitest.cc', |
3586 'browser/locale_tests_uitest.cc', | 3589 'browser/locale_tests_uitest.cc', |
3587 'browser/login_prompt_uitest.cc', | 3590 'browser/login_prompt_uitest.cc', |
3588 'browser/media_uitest.cc', | 3591 'browser/media_uitest.cc', |
3589 'browser/metrics/metrics_service_uitest.cc', | 3592 'browser/metrics/metrics_service_uitest.cc', |
3590 'browser/printing/printing_layout_uitest.cc', | 3593 'browser/printing/printing_layout_uitest.cc', |
3591 'browser/process_singleton_linux_uitest.cc', | 3594 'browser/process_singleton_linux_uitest.cc', |
3592 'browser/renderer_host/resource_dispatcher_host_uitest.cc', | 3595 'browser/renderer_host/resource_dispatcher_host_uitest.cc', |
3593 'browser/sanity_uitest.cc', | 3596 'browser/sanity_uitest.cc', |
3594 'browser/session_history_uitest.cc', | 3597 'browser/session_history_uitest.cc', |
3595 'browser/sessions/session_restore_uitest.cc', | 3598 'browser/sessions/session_restore_uitest.cc', |
(...skipping 1637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5233 # Use outputs of this action as inputs for the main target build. | 5236 # Use outputs of this action as inputs for the main target build. |
5234 # Seems as a misnomer but makes this happy on Linux (scons). | 5237 # Seems as a misnomer but makes this happy on Linux (scons). |
5235 'process_outputs_as_sources': 1, | 5238 'process_outputs_as_sources': 1, |
5236 }, | 5239 }, |
5237 ], # 'actions' | 5240 ], # 'actions' |
5238 }, | 5241 }, |
5239 ] | 5242 ] |
5240 }], | 5243 }], |
5241 ], # 'conditions' | 5244 ], # 'conditions' |
5242 } | 5245 } |
OLD | NEW |