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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 23684003: Introduce FastShowPickler which will be used for app list cold start. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Pickle type needs to be complete Created 7 years, 3 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_browser_ui.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 2651 matching lines...) Expand 10 before | Expand all | Expand 10 after
2662 'CLD_WINDOWS', 2662 'CLD_WINDOWS',
2663 ], 2663 ],
2664 }, 2664 },
2665 'sources': [ 2665 'sources': [
2666 '../third_party/cld/encodings/compact_lang_det/compact_lang_det_unit test_small.cc', 2666 '../third_party/cld/encodings/compact_lang_det/compact_lang_det_unit test_small.cc',
2667 ], 2667 ],
2668 'dependencies': [ 2668 'dependencies': [
2669 '../third_party/cld/cld.gyp:cld', 2669 '../third_party/cld/cld.gyp:cld',
2670 ], 2670 ],
2671 }], 2671 }],
2672 ['enable_app_list==1', {
2673 'sources': [
2674 'browser/ui/app_list/test/fast_show_pickler_unittest.cc',
2675 ],
2676 }],
2672 ], 2677 ],
2673 'target_conditions': [ 2678 'target_conditions': [
2674 ['OS == "ios"', { 2679 ['OS == "ios"', {
2675 'sources/': [ 2680 'sources/': [
2676 ['include', '^common/mac/nscoder_util_unittest\\.mm$'], 2681 ['include', '^common/mac/nscoder_util_unittest\\.mm$'],
2677 ], 2682 ],
2678 }], 2683 }],
2679 ], 2684 ],
2680 }, 2685 },
2681 { 2686 {
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
2787 # This *in the compile phase* must match the pdb name that's 2792 # This *in the compile phase* must match the pdb name that's
2788 # output by the final link. See empty_pdb_workaround.cc for 2793 # output by the final link. See empty_pdb_workaround.cc for
2789 # more details. 2794 # more details.
2790 'DebugInformationFormat': '3', 2795 'DebugInformationFormat': '3',
2791 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', 2796 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb',
2792 }, 2797 },
2793 }, 2798 },
2794 }, 2799 },
2795 ], 2800 ],
2796 }], 2801 }],
2802 ['enable_app_list==1', {
2803 'targets': [
2804 {
2805 # Unit tests for chrome app list, not run on any bots, this is for fas ter
2806 # compile/link/test cycles during development.
2807 'target_name': 'chrome_app_list_unittests',
2808 'type': '<(gtest_target_type)',
2809 'dependencies': [
2810 '../base/base.gyp:run_all_unittests',
2811 '../skia/skia.gyp:skia',
2812 '../testing/gtest.gyp:gtest',
2813 'apps',
2814 'browser_ui',
2815 ],
2816 'sources': [
2817 'browser/ui/app_list/test/fast_show_pickler_unittest.cc',
2818 ],
2819 },
2820 ],
2821 }],
2797 ], # 'conditions' 2822 ], # 'conditions'
2798 } 2823 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698