| OLD | NEW |
| 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 2619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2630 'conditions': [ | 2630 'conditions': [ |
| 2631 ['gtest_target_type == "shared_library"', { | 2631 ['gtest_target_type == "shared_library"', { |
| 2632 'dependencies': [ | 2632 'dependencies': [ |
| 2633 '../testing/android/native_test.gyp:native_test_native_code', | 2633 '../testing/android/native_test.gyp:native_test_native_code', |
| 2634 ], | 2634 ], |
| 2635 }], | 2635 }], |
| 2636 ], | 2636 ], |
| 2637 }], # OS == android | 2637 }], # OS == android |
| 2638 ['OS!="android" and OS!="ios" and chromeos==0 and configuration_policy==
1', { | 2638 ['OS!="android" and OS!="ios" and chromeos==0 and configuration_policy==
1', { |
| 2639 'sources': [ | 2639 'sources': [ |
| 2640 'browser/download/download_dir_policy_handler_unittest.cc', | |
| 2641 'browser/net/disk_cache_dir_policy_handler_unittest.cc', | 2640 'browser/net/disk_cache_dir_policy_handler_unittest.cc', |
| 2642 ], | 2641 ], |
| 2643 }], | 2642 }], |
| 2643 ['OS!="android" and OS!="ios" and configuration_policy==1', { |
| 2644 'sources': [ |
| 2645 'browser/download/download_dir_policy_handler_unittest.cc' |
| 2646 ], |
| 2647 }], |
| 2644 ['enable_printing!=1', { | 2648 ['enable_printing!=1', { |
| 2645 'sources/': [ | 2649 'sources/': [ |
| 2646 # No need for service process. | 2650 # No need for service process. |
| 2647 ['exclude', '^browser/service/'], | 2651 ['exclude', '^browser/service/'], |
| 2648 ['exclude', '^common/service_'], | 2652 ['exclude', '^common/service_'], |
| 2649 ['exclude', '^service/'], | 2653 ['exclude', '^service/'], |
| 2650 ], | 2654 ], |
| 2651 }], | 2655 }], |
| 2652 ['enable_themes==0', { | 2656 ['enable_themes==0', { |
| 2653 'sources!': [ | 2657 'sources!': [ |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2889 'browser/ui/app_list/test/fake_profile_store.h', | 2893 'browser/ui/app_list/test/fake_profile_store.h', |
| 2890 'browser/ui/app_list/test/fast_show_pickler_unittest.cc', | 2894 'browser/ui/app_list/test/fast_show_pickler_unittest.cc', |
| 2891 'browser/ui/views/app_list/linux/app_list_linux_unittest.cc', | 2895 'browser/ui/views/app_list/linux/app_list_linux_unittest.cc', |
| 2892 'browser/ui/views/app_list/win/app_list_win_unittest.cc', | 2896 'browser/ui/views/app_list/win/app_list_win_unittest.cc', |
| 2893 ], | 2897 ], |
| 2894 }, | 2898 }, |
| 2895 ], | 2899 ], |
| 2896 }], | 2900 }], |
| 2897 ], # 'conditions' | 2901 ], # 'conditions' |
| 2898 } | 2902 } |
| OLD | NEW |