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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 171583002: linux_aura: Default use_gnome_keyring% to on when use_aura=1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Link directly with gnome keyring in the unit tests. Created 6 years, 10 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
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 The Chromium Authors. All rights reserved. 1 # Copyright 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 'targets': [ 5 'targets': [
6 { 6 {
7 # This target contains mocks and test utilities that don't belong in 7 # This target contains mocks and test utilities that don't belong in
8 # production libraries but are used by more than one test executable. 8 # production libraries but are used by more than one test executable.
9 'target_name': 'test_support_common', 9 'target_name': 'test_support_common',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 2328 matching lines...) Expand 10 before | Expand all | Expand 10 after
2339 'browser/ui/gtk/bookmarks/bookmark_bar_gtk_unittest.cc', 2339 'browser/ui/gtk/bookmarks/bookmark_bar_gtk_unittest.cc',
2340 'browser/ui/gtk/bookmarks/bookmark_editor_gtk_unittest.cc', 2340 'browser/ui/gtk/bookmarks/bookmark_editor_gtk_unittest.cc',
2341 'browser/ui/gtk/gtk_chrome_shrinkable_hbox_unittest.cc', 2341 'browser/ui/gtk/gtk_chrome_shrinkable_hbox_unittest.cc',
2342 'browser/ui/gtk/gtk_theme_service_unittest.cc', 2342 'browser/ui/gtk/gtk_theme_service_unittest.cc',
2343 'browser/ui/gtk/omnibox/omnibox_popup_view_gtk_unittest.cc', 2343 'browser/ui/gtk/omnibox/omnibox_popup_view_gtk_unittest.cc',
2344 'browser/ui/gtk/omnibox/omnibox_view_gtk_unittest.cc', 2344 'browser/ui/gtk/omnibox/omnibox_view_gtk_unittest.cc',
2345 'browser/ui/gtk/reload_button_gtk_unittest.cc', 2345 'browser/ui/gtk/reload_button_gtk_unittest.cc',
2346 'browser/ui/gtk/status_icons/status_tray_gtk_unittest.cc', 2346 'browser/ui/gtk/status_icons/status_tray_gtk_unittest.cc',
2347 ], 2347 ],
2348 }], 2348 }],
2349 ['chromeos==0', {
2350 'conditions': [
2351 ['use_gnome_keyring==1', {
2352 # We use a few library functions directly, so link directly.
2353 'dependencies': [
2354 '../build/linux/system.gyp:gnome_keyring_direct',
2355 ],
2356 }],
2357 ],
2358 }],
2359 ], 2349 ],
2360 'dependencies': [ 2350 'dependencies': [
2361 '../build/linux/system.gyp:dbus', 2351 '../build/linux/system.gyp:dbus',
2362 '../build/linux/system.gyp:gtk', 2352 '../build/linux/system.gyp:gtk',
2363 '../dbus/dbus.gyp:dbus_test_support', 2353 '../dbus/dbus.gyp:dbus_test_support',
2364 '../sandbox/sandbox.gyp:*', 2354 '../sandbox/sandbox.gyp:*',
2365 ], 2355 ],
2366 }, { # else: toolkit_uses_gtk != 1 2356 }, { # else: toolkit_uses_gtk != 1
2367 'sources!': [ 2357 'sources!': [
2368 'browser/ui/gtk/tabs/tab_renderer_gtk_unittest.cc', 2358 'browser/ui/gtk/tabs/tab_renderer_gtk_unittest.cc',
2369 '../ui/views/focus/accelerator_handler_gtk_unittest.cc', 2359 '../ui/views/focus/accelerator_handler_gtk_unittest.cc',
2370 ], 2360 ],
2371 }], 2361 }],
2372 ['toolkit_uses_gtk == 1 or chromeos==1 or (OS=="linux" and use_aura==1)' , { 2362 ['toolkit_uses_gtk == 1 or chromeos==1 or (OS=="linux" and use_aura==1)' , {
2373 'dependencies': [ 2363 'dependencies': [
2374 '../build/linux/system.gyp:ssl', 2364 '../build/linux/system.gyp:ssl',
2375 ], 2365 ],
2376 }], 2366 }],
2377 ['use_gnome_keyring == 0', { 2367 ['use_gnome_keyring == 0', {
2378 # Disable the GNOME Keyring tests if we are not using it. 2368 # Disable the GNOME Keyring tests if we are not using it.
2379 'sources!': [ 2369 'sources!': [
2380 'browser/password_manager/native_backend_gnome_x_unittest.cc', 2370 'browser/password_manager/native_backend_gnome_x_unittest.cc',
2381 ], 2371 ],
2372 }, {
2373 # We use a few library functions directly, so link directly.
2374 'dependencies': [
2375 '../build/linux/system.gyp:gnome_keyring_direct',
2376 ],
2382 }], 2377 }],
2383 ['OS=="linux" and use_aura==1', { 2378 ['OS=="linux" and use_aura==1', {
2384 'dependencies': [ 2379 'dependencies': [
2385 '../build/linux/system.gyp:dbus', 2380 '../build/linux/system.gyp:dbus',
2386 '../dbus/dbus.gyp:dbus_test_support', 2381 '../dbus/dbus.gyp:dbus_test_support',
2387 '../ui/aura/aura.gyp:aura_test_support', 2382 '../ui/aura/aura.gyp:aura_test_support',
2388 ], 2383 ],
2389 }], 2384 }],
2390 ['OS=="linux" and branding=="Chrome" and target_arch=="ia32"', { 2385 ['OS=="linux" and branding=="Chrome" and target_arch=="ia32"', {
2391 'configurations': { 2386 'configurations': {
(...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after
2907 'browser/ui/app_list/test/fake_profile_store.h', 2902 'browser/ui/app_list/test/fake_profile_store.h',
2908 'browser/ui/app_list/test/fast_show_pickler_unittest.cc', 2903 'browser/ui/app_list/test/fast_show_pickler_unittest.cc',
2909 'browser/ui/views/app_list/linux/app_list_linux_unittest.cc', 2904 'browser/ui/views/app_list/linux/app_list_linux_unittest.cc',
2910 'browser/ui/views/app_list/win/app_list_win_unittest.cc', 2905 'browser/ui/views/app_list/win/app_list_win_unittest.cc',
2911 ], 2906 ],
2912 }, 2907 },
2913 ], 2908 ],
2914 }], 2909 }],
2915 ], # 'conditions' 2910 ], # 'conditions'
2916 } 2911 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698