| 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 'test_shell_windows_resource_files': [ | 8 'test_shell_windows_resource_files': [ |
| 9 'resources/test_shell.rc', | 9 'resources/test_shell.rc', |
| 10 'resources/pan_east.cur', | 10 'resources/pan_east.cur', |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 'mock_webclipboard_impl.cc', | 65 'mock_webclipboard_impl.cc', |
| 66 'mock_webclipboard_impl.h', | 66 'mock_webclipboard_impl.h', |
| 67 'resource.h', | 67 'resource.h', |
| 68 'simple_resource_loader_bridge.cc', | 68 'simple_resource_loader_bridge.cc', |
| 69 'simple_resource_loader_bridge.h', | 69 'simple_resource_loader_bridge.h', |
| 70 'test_navigation_controller.cc', | 70 'test_navigation_controller.cc', |
| 71 'test_navigation_controller.h', | 71 'test_navigation_controller.h', |
| 72 'test_shell.cc', | 72 'test_shell.cc', |
| 73 'test_shell.h', | 73 'test_shell.h', |
| 74 'test_shell_gtk.cc', | 74 'test_shell_gtk.cc', |
| 75 'test_shell_x11.cc', |
| 75 'test_shell_mac.mm', | 76 'test_shell_mac.mm', |
| 76 'test_shell_platform_delegate.h', | 77 'test_shell_platform_delegate.h', |
| 77 'test_shell_platform_delegate_gtk.cc', | 78 'test_shell_platform_delegate_gtk.cc', |
| 78 'test_shell_platform_delegate_mac.mm', | 79 'test_shell_platform_delegate_mac.mm', |
| 79 'test_shell_platform_delegate_win.cc', | 80 'test_shell_platform_delegate_win.cc', |
| 80 'test_shell_request_context.cc', | 81 'test_shell_request_context.cc', |
| 81 'test_shell_request_context.h', | 82 'test_shell_request_context.h', |
| 82 'test_shell_switches.cc', | 83 'test_shell_switches.cc', |
| 83 'test_shell_switches.h', | 84 'test_shell_switches.h', |
| 84 'test_shell_win.cc', | 85 'test_shell_win.cc', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 109 'dependencies': [ | 110 'dependencies': [ |
| 110 'test_shell_resources', | 111 'test_shell_resources', |
| 111 'npapi_layout_test_plugin', | 112 'npapi_layout_test_plugin', |
| 112 'npapi_test_plugin', | 113 'npapi_test_plugin', |
| 113 '../../../build/linux/system.gyp:gtk', | 114 '../../../build/linux/system.gyp:gtk', |
| 114 ], | 115 ], |
| 115 # for: test_shell_gtk.cc | 116 # for: test_shell_gtk.cc |
| 116 'cflags': ['-Wno-multichar'], | 117 'cflags': ['-Wno-multichar'], |
| 117 }, { # else: OS!=linux | 118 }, { # else: OS!=linux |
| 118 'sources/': [ | 119 'sources/': [ |
| 119 ['exclude', '_gtk\\.cc$'] | 120 ['exclude', '_gtk\\.cc$'], |
| 121 ['exclude', '_x11\\.cc$'], |
| 120 ], | 122 ], |
| 121 }], | 123 }], |
| 122 ['OS!="mac"', { | 124 ['OS!="mac"', { |
| 123 'sources/': [ | 125 'sources/': [ |
| 124 ['exclude', 'mac/[^/]*\\.(cc|mm?)$'], | 126 ['exclude', 'mac/[^/]*\\.(cc|mm?)$'], |
| 125 ['exclude', '_mac\\.(cc|mm?)$'], | 127 ['exclude', '_mac\\.(cc|mm?)$'], |
| 126 ] | 128 ] |
| 127 }], | 129 }], |
| 128 ['OS=="win"', { | 130 ['OS=="win"', { |
| 129 'msvs_disabled_warnings': [ 4800 ], | 131 'msvs_disabled_warnings': [ 4800 ], |
| (...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 'sources': [ | 489 'sources': [ |
| 488 '../../../chrome/test/worker/test_webworker.cc', | 490 '../../../chrome/test/worker/test_webworker.cc', |
| 489 '../../../chrome/test/worker/test_worker_main.cc', | 491 '../../../chrome/test/worker/test_worker_main.cc', |
| 490 '../../../chrome/worker/worker_webkitclient_impl.cc', | 492 '../../../chrome/worker/worker_webkitclient_impl.cc', |
| 491 ], | 493 ], |
| 492 }, | 494 }, |
| 493 ], | 495 ], |
| 494 }], | 496 }], |
| 495 ], | 497 ], |
| 496 } | 498 } |
| OLD | NEW |