| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'browser_tests_sources_views_specific': [ | 7 'browser_tests_sources_views_specific': [ |
| 8 'browser/extensions/browser_action_test_util_views.cc', | 8 'browser/extensions/browser_action_test_util_views.cc', |
| 9 'browser/views/browser_actions_container_unittest.cc', | 9 'browser/views/browser_actions_container_unittest.cc', |
| 10 'browser/views/find_bar_host_browsertest.cc', | 10 'browser/views/find_bar_host_browsertest.cc', |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 'browser/images_uitest.cc', | 281 'browser/images_uitest.cc', |
| 282 'browser/in_process_webkit/dom_storage_uitest.cc', | 282 'browser/in_process_webkit/dom_storage_uitest.cc', |
| 283 'browser/locale_tests_uitest.cc', | 283 'browser/locale_tests_uitest.cc', |
| 284 'browser/login_prompt_uitest.cc', | 284 'browser/login_prompt_uitest.cc', |
| 285 'browser/media_uitest.cc', | 285 'browser/media_uitest.cc', |
| 286 'browser/metrics/metrics_service_uitest.cc', | 286 'browser/metrics/metrics_service_uitest.cc', |
| 287 'browser/notifications/notifications_uitest.cc', | 287 'browser/notifications/notifications_uitest.cc', |
| 288 'browser/pref_service_uitest.cc', | 288 'browser/pref_service_uitest.cc', |
| 289 'browser/printing/printing_layout_uitest.cc', | 289 'browser/printing/printing_layout_uitest.cc', |
| 290 'browser/process_singleton_linux_uitest.cc', | 290 'browser/process_singleton_linux_uitest.cc', |
| 291 'browser/process_singleton_win_uitest.cc', |
| 291 'browser/renderer_host/resource_dispatcher_host_uitest.cc', | 292 'browser/renderer_host/resource_dispatcher_host_uitest.cc', |
| 292 'browser/sanity_uitest.cc', | 293 'browser/sanity_uitest.cc', |
| 293 'browser/session_history_uitest.cc', | 294 'browser/session_history_uitest.cc', |
| 294 'browser/sessions/session_restore_uitest.cc', | 295 'browser/sessions/session_restore_uitest.cc', |
| 295 'browser/tab_contents/view_source_uitest.cc', | 296 'browser/tab_contents/view_source_uitest.cc', |
| 296 'browser/tab_restore_uitest.cc', | 297 'browser/tab_restore_uitest.cc', |
| 297 'browser/unload_uitest.cc', | 298 'browser/unload_uitest.cc', |
| 298 'browser/views/find_bar_host_uitest.cc', | 299 'browser/views/find_bar_host_uitest.cc', |
| 299 'common/logging_chrome_uitest.cc', | 300 'common/logging_chrome_uitest.cc', |
| 300 'test/automation/automation_proxy_uitest.cc', | 301 'test/automation/automation_proxy_uitest.cc', |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 }, | 382 }, |
| 382 }, | 383 }, |
| 383 }, | 384 }, |
| 384 }, | 385 }, |
| 385 }, { # else: OS != "win" | 386 }, { # else: OS != "win" |
| 386 'sources!': [ | 387 'sources!': [ |
| 387 # TODO(port)? (Most of these include windows.h or similar.) | 388 # TODO(port)? (Most of these include windows.h or similar.) |
| 388 'browser/extensions/extension_uitest.cc', | 389 'browser/extensions/extension_uitest.cc', |
| 389 'browser/media_uitest.cc', | 390 'browser/media_uitest.cc', |
| 390 'browser/printing/printing_layout_uitest.cc', | 391 'browser/printing/printing_layout_uitest.cc', |
| 392 # TODO(port)? (this one compiles fine on mac and linux, but it fails |
| 393 # to LaunchApp and thus have not been tested for success either). |
| 394 'browser/process_singleton_win_uitest.cc', |
| 391 'browser/views/find_bar_host_uitest.cc', | 395 'browser/views/find_bar_host_uitest.cc', |
| 392 'common/logging_chrome_uitest.cc', | 396 'common/logging_chrome_uitest.cc', |
| 393 'test/ui/sandbox_uitests.cc', | 397 'test/ui/sandbox_uitests.cc', |
| 394 ], | 398 ], |
| 395 }], | 399 }], |
| 396 ['OS=="linux" or OS=="freebsd"', { | 400 ['OS=="linux" or OS=="freebsd"', { |
| 397 'conditions': [ | 401 'conditions': [ |
| 398 ['linux_use_tcmalloc==1', { | 402 ['linux_use_tcmalloc==1', { |
| 399 'dependencies': [ | 403 'dependencies': [ |
| 400 '../base/allocator/allocator.gyp:allocator', | 404 '../base/allocator/allocator.gyp:allocator', |
| (...skipping 1645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2046 ] | 2050 ] |
| 2047 }], # 'coverage!=0' | 2051 }], # 'coverage!=0' |
| 2048 ], # 'conditions' | 2052 ], # 'conditions' |
| 2049 } | 2053 } |
| 2050 | 2054 |
| 2051 # Local Variables: | 2055 # Local Variables: |
| 2052 # tab-width:2 | 2056 # tab-width:2 |
| 2053 # indent-tabs-mode:nil | 2057 # indent-tabs-mode:nil |
| 2054 # End: | 2058 # End: |
| 2055 # vim: set expandtab tabstop=2 shiftwidth=2: | 2059 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |