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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 197013007: Set drive as the default download folder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Version 1 Created 6 years, 9 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
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 2642 matching lines...) Expand 10 before | Expand all | Expand 10 after
2653 'conditions': [ 2653 'conditions': [
2654 ['gtest_target_type == "shared_library"', { 2654 ['gtest_target_type == "shared_library"', {
2655 'dependencies': [ 2655 'dependencies': [
2656 '../testing/android/native_test.gyp:native_test_native_code', 2656 '../testing/android/native_test.gyp:native_test_native_code',
2657 ], 2657 ],
2658 }], 2658 }],
2659 ], 2659 ],
2660 }], # OS == android 2660 }], # OS == android
2661 ['OS!="android" and OS!="ios" and chromeos==0 and configuration_policy== 1', { 2661 ['OS!="android" and OS!="ios" and chromeos==0 and configuration_policy== 1', {
2662 'sources': [ 2662 'sources': [
2663 'browser/download/download_dir_policy_handler_unittest.cc',
2664 'browser/net/disk_cache_dir_policy_handler_unittest.cc', 2663 'browser/net/disk_cache_dir_policy_handler_unittest.cc',
2665 ], 2664 ],
2666 }], 2665 }],
2666 ['OS!="android" and OS!="ios" and configuration_policy==1', {
2667 'sources': [
2668 'browser/download/download_dir_policy_handler_unittest.cc'
2669 ],
2670 }],
2667 ['enable_printing!=1', { 2671 ['enable_printing!=1', {
2668 'sources/': [ 2672 'sources/': [
2669 # No need for service process. 2673 # No need for service process.
2670 ['exclude', '^browser/service/'], 2674 ['exclude', '^browser/service/'],
2671 ['exclude', '^common/service_'], 2675 ['exclude', '^common/service_'],
2672 ['exclude', '^service/'], 2676 ['exclude', '^service/'],
2673 ], 2677 ],
2674 }], 2678 }],
2675 ['enable_themes==0', { 2679 ['enable_themes==0', {
2676 'sources!': [ 2680 'sources!': [
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
2911 'browser/ui/app_list/test/fake_profile_store.h', 2915 'browser/ui/app_list/test/fake_profile_store.h',
2912 'browser/ui/app_list/test/fast_show_pickler_unittest.cc', 2916 'browser/ui/app_list/test/fast_show_pickler_unittest.cc',
2913 'browser/ui/views/app_list/linux/app_list_linux_unittest.cc', 2917 'browser/ui/views/app_list/linux/app_list_linux_unittest.cc',
2914 'browser/ui/views/app_list/win/app_list_win_unittest.cc', 2918 'browser/ui/views/app_list/win/app_list_win_unittest.cc',
2915 ], 2919 ],
2916 }, 2920 },
2917 ], 2921 ],
2918 }], 2922 }],
2919 ], # 'conditions' 2923 ], # 'conditions'
2920 } 2924 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698