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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 1978563002: Stop compiling password infobar code on Mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clean up cocoa Created 4 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
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | chrome/common/chrome_switches.h » ('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 'variables': { 5 'variables': {
6 'chrome_unit_tests_sources': [ 6 'chrome_unit_tests_sources': [
7 # histograms.xml is analyzed by AboutFlagsHistogramTest, so this 7 # histograms.xml is analyzed by AboutFlagsHistogramTest, so this
8 # dependency is needed to make commit bots run unit_tests on 8 # dependency is needed to make commit bots run unit_tests on
9 # histograms.xml changes. 9 # histograms.xml changes.
10 '../tools/metrics/histograms/histograms.xml', 10 '../tools/metrics/histograms/histograms.xml',
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 '../tools/json_schema_compiler/test/choices_unittest.cc', 333 '../tools/json_schema_compiler/test/choices_unittest.cc',
334 '../tools/json_schema_compiler/test/crossref_unittest.cc', 334 '../tools/json_schema_compiler/test/crossref_unittest.cc',
335 '../tools/json_schema_compiler/test/enums_unittest.cc', 335 '../tools/json_schema_compiler/test/enums_unittest.cc',
336 '../tools/json_schema_compiler/test/error_generation_unittest.cc', 336 '../tools/json_schema_compiler/test/error_generation_unittest.cc',
337 '../tools/json_schema_compiler/test/functions_as_parameters_unittest.cc', 337 '../tools/json_schema_compiler/test/functions_as_parameters_unittest.cc',
338 '../tools/json_schema_compiler/test/functions_on_types_unittest.cc', 338 '../tools/json_schema_compiler/test/functions_on_types_unittest.cc',
339 '../tools/json_schema_compiler/test/idl_schemas_unittest.cc', 339 '../tools/json_schema_compiler/test/idl_schemas_unittest.cc',
340 '../tools/json_schema_compiler/test/objects_unittest.cc', 340 '../tools/json_schema_compiler/test/objects_unittest.cc',
341 '../tools/json_schema_compiler/test/simple_api_unittest.cc', 341 '../tools/json_schema_compiler/test/simple_api_unittest.cc',
342 ], 342 ],
343 'chrome_unit_tests_mac_android_sources': [
344 'browser/password_manager/save_password_infobar_delegate_unittest.cc',
345 ],
346 'chrome_unit_tests_android_sources': [ 343 'chrome_unit_tests_android_sources': [
347 'browser/autofill/autofill_save_card_infobar_delegate_mobile_unittest.cc', 344 'browser/autofill/autofill_save_card_infobar_delegate_mobile_unittest.cc',
348 'browser/password_manager/auto_signin_first_run_dialog_android_unittest.cc ', 345 'browser/password_manager/auto_signin_first_run_dialog_android_unittest.cc ',
346 'browser/password_manager/save_password_infobar_delegate_unittest.cc',
349 'browser/permissions/permission_queue_controller_unittest.cc', 347 'browser/permissions/permission_queue_controller_unittest.cc',
350 ], 348 ],
351 'chrome_unit_tests_non_mobile_sources': [ 349 'chrome_unit_tests_non_mobile_sources': [
352 'browser/download/download_dir_policy_handler_unittest.cc', 350 'browser/download/download_dir_policy_handler_unittest.cc',
353 'browser/lifetime/keep_alive_registry_unittest.cc', 351 'browser/lifetime/keep_alive_registry_unittest.cc',
354 'browser/renderer_context_menu/render_view_context_menu_test_util.cc', 352 'browser/renderer_context_menu/render_view_context_menu_test_util.cc',
355 'browser/renderer_context_menu/render_view_context_menu_test_util.h', 353 'browser/renderer_context_menu/render_view_context_menu_test_util.h',
356 'browser/ui/autofill/save_card_bubble_controller_impl_unittest.cc', 354 'browser/ui/autofill/save_card_bubble_controller_impl_unittest.cc',
357 'browser/ui/autofill/country_combobox_model_unittest.cc', 355 'browser/ui/autofill/country_combobox_model_unittest.cc',
358 'browser/ui/passwords/manage_passwords_ui_controller_unittest.cc', 356 'browser/ui/passwords/manage_passwords_ui_controller_unittest.cc',
(...skipping 2221 matching lines...) Expand 10 before | Expand all | Expand 10 after
2580 # TODO(tapted): Add chrome_unit_tests_views_non_mac_sources here. 2578 # TODO(tapted): Add chrome_unit_tests_views_non_mac_sources here.
2581 }, { 2579 }, {
2582 'sources': [ '<@(chrome_unit_tests_cocoa_sources)' ], 2580 'sources': [ '<@(chrome_unit_tests_cocoa_sources)' ],
2583 }], 2581 }],
2584 ], 2582 ],
2585 # TODO(mark): We really want this for all non-static library targets, 2583 # TODO(mark): We really want this for all non-static library targets,
2586 # but when we tried to pull it up to the common.gypi level, it broke 2584 # but when we tried to pull it up to the common.gypi level, it broke
2587 # other things like the ui and startup tests. *shrug* 2585 # other things like the ui and startup tests. *shrug*
2588 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, 2586 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']},
2589 }], 2587 }],
2590 ['OS=="mac" or OS=="android"', {
2591 'sources': [ '<@(chrome_unit_tests_mac_android_sources)' ],
2592 }],
2593 ['OS=="android"', { 2588 ['OS=="android"', {
2594 'sources': [ '<@(chrome_unit_tests_android_sources)' ], 2589 'sources': [ '<@(chrome_unit_tests_android_sources)' ],
2595 }], 2590 }],
2596 ['OS!="mac" and OS!="ios"', { 2591 ['OS!="mac" and OS!="ios"', {
2597 'dependencies': [ 2592 'dependencies': [
2598 '../third_party/hunspell/hunspell.gyp:hunspell', 2593 '../third_party/hunspell/hunspell.gyp:hunspell',
2599 'chrome_resources.gyp:packed_extra_resources', 2594 'chrome_resources.gyp:packed_extra_resources',
2600 'chrome_resources.gyp:packed_resources', 2595 'chrome_resources.gyp:packed_resources',
2601 'tools/convert_dict/convert_dict.gyp:convert_dict_lib', 2596 'tools/convert_dict/convert_dict.gyp:convert_dict_lib',
2602 ], 2597 ],
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
2989 'dependencies': [ 2984 'dependencies': [
2990 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2985 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2991 ], 2986 ],
2992 }], 2987 }],
2993 ], 2988 ],
2994 }, 2989 },
2995 ], 2990 ],
2996 }], 2991 }],
2997 ], # 'conditions' 2992 ], # 'conditions'
2998 } 2993 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698