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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 1060733003: Support custom icon in search result. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix BUILD.gn. Created 5 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/test/BUILD.gn » ('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 '../components/autofill/content/renderer/test_password_autofill_agent.cc', 7 '../components/autofill/content/renderer/test_password_autofill_agent.cc',
8 '../components/autofill/content/renderer/test_password_autofill_agent.h', 8 '../components/autofill/content/renderer/test_password_autofill_agent.h',
9 '../components/autofill/content/renderer/test_password_generation_agent.cc ', 9 '../components/autofill/content/renderer/test_password_generation_agent.cc ',
10 '../components/autofill/content/renderer/test_password_generation_agent.h' , 10 '../components/autofill/content/renderer/test_password_generation_agent.h' ,
(...skipping 1551 matching lines...) Expand 10 before | Expand all | Expand 10 after
1562 'browser/ui/app_list/search/history_unittest.cc', 1562 'browser/ui/app_list/search/history_unittest.cc',
1563 'browser/ui/app_list/search/omnibox_result_unittest.cc', 1563 'browser/ui/app_list/search/omnibox_result_unittest.cc',
1564 'browser/ui/app_list/search/suggestions/suggestions_search_provider_unitte st.cc', 1564 'browser/ui/app_list/search/suggestions/suggestions_search_provider_unitte st.cc',
1565 'browser/ui/app_list/speech_auth_helper_unittest.cc', 1565 'browser/ui/app_list/speech_auth_helper_unittest.cc',
1566 'browser/ui/app_list/test/fake_profile.cc', 1566 'browser/ui/app_list/test/fake_profile.cc',
1567 'browser/ui/app_list/test/fake_profile.h', 1567 'browser/ui/app_list/test/fake_profile.h',
1568 'browser/ui/app_list/test/fake_profile_store.cc', 1568 'browser/ui/app_list/test/fake_profile_store.cc',
1569 'browser/ui/app_list/test/fake_profile_store.h', 1569 'browser/ui/app_list/test/fake_profile_store.h',
1570 'browser/ui/app_list/test/fast_show_pickler_unittest.cc', 1570 'browser/ui/app_list/test/fast_show_pickler_unittest.cc',
1571 ], 1571 ],
1572 # ChromeOS only sources of app_list.
1573 'chrome_unit_tests_app_list_chromeos_sources': [
1574 'browser/ui/app_list/search/launcher_search/extension_badged_icon_image_un ittest.cc',
1575 ],
1572 }, 1576 },
1573 'targets': [ 1577 'targets': [
1574 { 1578 {
1575 # This target contains mocks and test utilities that don't belong in 1579 # This target contains mocks and test utilities that don't belong in
1576 # production libraries but are used by more than one test executable. 1580 # production libraries but are used by more than one test executable.
1577 # 1581 #
1578 # GN version: //chrome/test:test_support 1582 # GN version: //chrome/test:test_support
1579 'target_name': 'test_support_common', 1583 'target_name': 'test_support_common',
1580 'type': 'static_library', 1584 'type': 'static_library',
1581 'dependencies': [ 1585 'dependencies': [
(...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after
2598 'dependencies': [ 2602 'dependencies': [
2599 '../third_party/cld/cld.gyp:cld', 2603 '../third_party/cld/cld.gyp:cld',
2600 ], 2604 ],
2601 }], 2605 }],
2602 ['enable_app_list==1', { 2606 ['enable_app_list==1', {
2603 'sources': [ '<@(chrome_unit_tests_app_list_sources)' ], 2607 'sources': [ '<@(chrome_unit_tests_app_list_sources)' ],
2604 'dependencies': [ 2608 'dependencies': [
2605 '../ui/app_list/app_list.gyp:app_list_test_support', 2609 '../ui/app_list/app_list.gyp:app_list_test_support',
2606 ], 2610 ],
2607 }], 2611 }],
2612 ['enable_app_list==1 and chromeos==1', {
2613 'sources': [ '<@(chrome_unit_tests_app_list_chromeos_sources)' ],
2614 }],
2608 ['enable_plugin_installation==0', { 2615 ['enable_plugin_installation==0', {
2609 'sources!': [ 2616 'sources!': [
2610 'browser/plugins/plugin_installer_unittest.cc', 2617 'browser/plugins/plugin_installer_unittest.cc',
2611 ], 2618 ],
2612 }], 2619 }],
2613 # Adding more conditions? Don't forget to update the GN build. 2620 # Adding more conditions? Don't forget to update the GN build.
2614 ], 2621 ],
2615 }, 2622 },
2616 { 2623 {
2617 # GN: //chrome/test:chrome_app_unittests 2624 # GN: //chrome/test:chrome_app_unittests
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
2774 'dependencies': [ 2781 'dependencies': [
2775 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2782 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2776 ], 2783 ],
2777 }], 2784 }],
2778 ], 2785 ],
2779 }, 2786 },
2780 ], 2787 ],
2781 }], 2788 }],
2782 ], # 'conditions' 2789 ], # 'conditions'
2783 } 2790 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698