Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(277)

Side by Side Diff: chrome/chrome_tests.gypi

Issue 11236025: Test that debug stub works with browser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 'variables' : { 5 'variables' : {
6 'pyautolib_sources': [ 6 'pyautolib_sources': [
7 'app/chrome_command_ids.h', 7 'app/chrome_command_ids.h',
8 'app/chrome_dll_resource.h', 8 'app/chrome_dll_resource.h',
9 'common/automation_constants.h', 9 'common/automation_constants.h',
10 'common/pref_names.cc', 10 'common/pref_names.cc',
(...skipping 3225 matching lines...) Expand 10 before | Expand all | Expand 10 after
3236 'conditions': [ 3236 'conditions': [
3237 ['enable_one_click_signin==0', { 3237 ['enable_one_click_signin==0', {
3238 'sources!': [ 3238 'sources!': [
3239 'browser/ui/gtk/one_click_signin_bubble_gtk_browsertest.cc', 3239 'browser/ui/gtk/one_click_signin_bubble_gtk_browsertest.cc',
3240 'browser/ui/views/sync/one_click_signin_bubble_view_browsertest.cc', 3240 'browser/ui/views/sync/one_click_signin_bubble_view_browsertest.cc',
3241 ] 3241 ]
3242 }], 3242 }],
3243 ['disable_nacl==0', { 3243 ['disable_nacl==0', {
3244 'sources':[ 3244 'sources':[
3245 'browser/extensions/extension_nacl_browsertest.cc', 3245 'browser/extensions/extension_nacl_browsertest.cc',
3246 'browser/nacl_host/test/nacl_enable_debug_stub_browsertest.cc',
3246 ], 3247 ],
3247 'conditions': [ 3248 'conditions': [
3248 ['disable_nacl_untrusted==0', { 3249 ['disable_nacl_untrusted==0', {
3249 'sources': [ 3250 'sources': [
3250 'test/nacl/nacl_browsertest.cc', 3251 'test/nacl/nacl_browsertest.cc',
3251 'test/nacl/nacl_browsertest_uma.cc', 3252 'test/nacl/nacl_browsertest_uma.cc',
3252 'test/nacl/nacl_browsertest_util.cc', 3253 'test/nacl/nacl_browsertest_util.cc',
3253 'test/nacl/nacl_browsertest_util.h', 3254 'test/nacl/nacl_browsertest_util.h',
3254 ], 3255 ],
3255 'dependencies': [ 3256 'dependencies': [
3256 'test/data/nacl/nacl_test_data.gyp:*', 3257 'test/data/nacl/nacl_test_data.gyp:*',
3257 '../ppapi/native_client/native_client.gyp:nacl_irt', 3258 '../ppapi/native_client/native_client.gyp:nacl_irt',
3258 '../ppapi/ppapi_untrusted.gyp:ppapi_nacl_tests', 3259 '../ppapi/ppapi_untrusted.gyp:ppapi_nacl_tests',
3259 ], 3260 ],
3260 }], 3261 }],
3261 ['OS=="win" or OS=="linux"', { 3262 ['OS=="win" or OS=="linux"', {
3262 'sources': [ 3263 'sources': [
3263 'browser/nacl_host/test/nacl_gdb_browsertest.cc', 3264 'browser/nacl_host/test/nacl_gdb_browsertest.cc',
3264 ], 3265 ],
3265 'dependencies': [ 3266 'dependencies': [
3266 'browser/nacl_host/test/mock_nacl_gdb.gyp:mock_nacl_gdb', 3267 'browser/nacl_host/test/mock_nacl_gdb.gyp:mock_nacl_gdb',
3267 ], 3268 ],
3268 }], 3269 }],
3270 # TODO(halyavin) NaCl on Windows can't open debug stub socket
3271 # in browser process as needed by this test.
3272 # See http://crbug.com/157312.
3273 ['OS=="win"', {
3274 'sources!': [
3275 'browser/nacl_host/test/nacl_enable_debug_stub_browsertest.cc',
3276 ],
3277 }],
3269 ], 3278 ],
3270 }], 3279 }],
3271 ['chromeos==0', { 3280 ['chromeos==0', {
3272 'sources/': [ 3281 'sources/': [
3273 ['exclude', '^browser/chromeos'], 3282 ['exclude', '^browser/chromeos'],
3274 ['exclude', '^browser/ui/webui/options/chromeos/'], 3283 ['exclude', '^browser/ui/webui/options/chromeos/'],
3275 ], 3284 ],
3276 'sources!': [ 3285 'sources!': [
3277 'browser/extensions/api/rtc_private/rtc_private_apitest.cc', 3286 'browser/extensions/api/rtc_private/rtc_private_apitest.cc',
3278 'browser/extensions/api/terminal/terminal_private_apitest.cc', 3287 'browser/extensions/api/terminal/terminal_private_apitest.cc',
(...skipping 1596 matching lines...) Expand 10 before | Expand all | Expand 10 after
4875 'sync_integration_tests.isolate', 4884 'sync_integration_tests.isolate',
4876 ], 4885 ],
4877 'sources': [ 4886 'sources': [
4878 'sync_integration_tests.isolate', 4887 'sync_integration_tests.isolate',
4879 ], 4888 ],
4880 }, 4889 },
4881 ], 4890 ],
4882 }], 4891 }],
4883 ], # 'conditions' 4892 ], # 'conditions'
4884 } 4893 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698