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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 14771026: Linux: remove unmaintained SELinux code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 | « chrome/chrome_exe.gypi ('k') | chrome/nacl/nacl_helper_linux.cc » ('j') | 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 2042 matching lines...) Expand 10 before | Expand all | Expand 10 after
2053 'browser/net/gaia/gaia_oauth_fetcher_unittest.cc', 2053 'browser/net/gaia/gaia_oauth_fetcher_unittest.cc',
2054 ], 2054 ],
2055 }], 2055 }],
2056 ['use_x11==1', { 2056 ['use_x11==1', {
2057 'dependencies': [ 2057 'dependencies': [
2058 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2058 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2059 ], 2059 ],
2060 }], 2060 }],
2061 ['toolkit_uses_gtk == 1', { 2061 ['toolkit_uses_gtk == 1', {
2062 'conditions': [ 2062 'conditions': [
2063 ['selinux==0', {
2064 'dependencies': [
2065 '../sandbox/sandbox.gyp:*',
2066 ],
2067 }],
2068 ['toolkit_views==1', { 2063 ['toolkit_views==1', {
2069 'sources!': [ 2064 'sources!': [
2070 'browser/ui/gtk/accelerators_gtk_unittest.cc', 2065 'browser/ui/gtk/accelerators_gtk_unittest.cc',
2071 'browser/ui/gtk/bookmarks/bookmark_bar_gtk_unittest.cc', 2066 'browser/ui/gtk/bookmarks/bookmark_bar_gtk_unittest.cc',
2072 'browser/ui/gtk/bookmarks/bookmark_editor_gtk_unittest.cc', 2067 'browser/ui/gtk/bookmarks/bookmark_editor_gtk_unittest.cc',
2073 'browser/ui/gtk/gtk_chrome_shrinkable_hbox_unittest.cc', 2068 'browser/ui/gtk/gtk_chrome_shrinkable_hbox_unittest.cc',
2074 'browser/ui/gtk/gtk_theme_service_unittest.cc', 2069 'browser/ui/gtk/gtk_theme_service_unittest.cc',
2075 'browser/ui/gtk/omnibox/omnibox_popup_view_gtk_unittest.cc', 2070 'browser/ui/gtk/omnibox/omnibox_popup_view_gtk_unittest.cc',
2076 'browser/ui/gtk/omnibox/omnibox_view_gtk_unittest.cc', 2071 'browser/ui/gtk/omnibox/omnibox_view_gtk_unittest.cc',
2077 'browser/ui/gtk/reload_button_gtk_unittest.cc', 2072 'browser/ui/gtk/reload_button_gtk_unittest.cc',
2078 'browser/ui/gtk/status_icons/status_tray_gtk_unittest.cc', 2073 'browser/ui/gtk/status_icons/status_tray_gtk_unittest.cc',
2079 ], 2074 ],
2080 }], 2075 }],
2081 ['chromeos==0', { 2076 ['chromeos==0', {
2082 'conditions': [ 2077 'conditions': [
2083 ['use_gnome_keyring==1', { 2078 ['use_gnome_keyring==1', {
2084 # We use a few library functions directly, so link directly. 2079 # We use a few library functions directly, so link directly.
2085 'dependencies': [ 2080 'dependencies': [
2086 '../build/linux/system.gyp:gnome_keyring_direct', 2081 '../build/linux/system.gyp:gnome_keyring_direct',
2087 ], 2082 ],
2088 }], 2083 }],
2089 ], 2084 ],
2090 }], 2085 }],
2091 ], 2086 ],
2092 'dependencies': [ 2087 'dependencies': [
2093 '../build/linux/system.gyp:dbus', 2088 '../build/linux/system.gyp:dbus',
2094 '../build/linux/system.gyp:gtk', 2089 '../build/linux/system.gyp:gtk',
2095 '../dbus/dbus.gyp:dbus_test_support', 2090 '../dbus/dbus.gyp:dbus_test_support',
2091 '../sandbox/sandbox.gyp:*',
2096 ], 2092 ],
2097 'sources!': [ 2093 'sources!': [
2098 'browser/printing/print_job_unittest.cc', 2094 'browser/printing/print_job_unittest.cc',
2099 ], 2095 ],
2100 }, { # else: toolkit_uses_gtk != 1 2096 }, { # else: toolkit_uses_gtk != 1
2101 'sources!': [ 2097 'sources!': [
2102 'browser/ui/gtk/tabs/tab_renderer_gtk_unittest.cc', 2098 'browser/ui/gtk/tabs/tab_renderer_gtk_unittest.cc',
2103 '../ui/views/focus/accelerator_handler_gtk_unittest.cc', 2099 '../ui/views/focus/accelerator_handler_gtk_unittest.cc',
2104 ], 2100 ],
2105 }], 2101 }],
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
2521 # more details. 2517 # more details.
2522 'DebugInformationFormat': '3', 2518 'DebugInformationFormat': '3',
2523 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', 2519 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb',
2524 }, 2520 },
2525 }, 2521 },
2526 }, 2522 },
2527 ], 2523 ],
2528 }], 2524 }],
2529 ], # 'conditions' 2525 ], # 'conditions'
2530 } 2526 }
OLDNEW
« no previous file with comments | « chrome/chrome_exe.gypi ('k') | chrome/nacl/nacl_helper_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698