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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 6869042: Add immutable settings checks when handling policy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add unit tests Created 9 years, 8 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
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 { 5 {
6 'variables' : { 6 'variables' : {
7 'pyautolib_sources': [ 7 'pyautolib_sources': [
8 'app/chrome_command_ids.h', 8 'app/chrome_command_ids.h',
9 'app/chrome_dll_resource.h', 9 'app/chrome_dll_resource.h',
10 'common/automation_constants.h', 10 'common/automation_constants.h',
(...skipping 1425 matching lines...) Expand 10 before | Expand all | Expand 10 after
1436 'browser/policy/asynchronous_policy_provider_unittest.cc', 1436 'browser/policy/asynchronous_policy_provider_unittest.cc',
1437 'browser/policy/asynchronous_policy_test_base.cc', 1437 'browser/policy/asynchronous_policy_test_base.cc',
1438 'browser/policy/asynchronous_policy_test_base.h', 1438 'browser/policy/asynchronous_policy_test_base.h',
1439 'browser/policy/cloud_policy_controller_unittest.cc', 1439 'browser/policy/cloud_policy_controller_unittest.cc',
1440 'browser/policy/config_dir_policy_provider_unittest.cc', 1440 'browser/policy/config_dir_policy_provider_unittest.cc',
1441 'browser/policy/configuration_policy_pref_store_unittest.cc', 1441 'browser/policy/configuration_policy_pref_store_unittest.cc',
1442 'browser/policy/configuration_policy_provider_mac_unittest.cc', 1442 'browser/policy/configuration_policy_provider_mac_unittest.cc',
1443 'browser/policy/configuration_policy_provider_win_unittest.cc', 1443 'browser/policy/configuration_policy_provider_win_unittest.cc',
1444 'browser/policy/device_policy_cache_unittest.cc', 1444 'browser/policy/device_policy_cache_unittest.cc',
1445 'browser/policy/device_token_fetcher_unittest.cc', 1445 'browser/policy/device_token_fetcher_unittest.cc',
1446 'browser/policy/enterprise_install_attributes_unittest.cc',
1446 'browser/policy/file_based_policy_provider_unittest.cc', 1447 'browser/policy/file_based_policy_provider_unittest.cc',
1447 'browser/policy/device_management_backend_mock.cc', 1448 'browser/policy/device_management_backend_mock.cc',
1448 'browser/policy/device_management_backend_mock.h', 1449 'browser/policy/device_management_backend_mock.h',
1449 'browser/policy/device_management_service_unittest.cc', 1450 'browser/policy/device_management_service_unittest.cc',
1450 'browser/policy/managed_prefs_banner_base_unittest.cc', 1451 'browser/policy/managed_prefs_banner_base_unittest.cc',
1451 'browser/policy/mock_configuration_policy_provider.cc', 1452 'browser/policy/mock_configuration_policy_provider.cc',
1452 'browser/policy/mock_configuration_policy_provider.h', 1453 'browser/policy/mock_configuration_policy_provider.h',
1453 'browser/policy/mock_configuration_policy_store.cc', 1454 'browser/policy/mock_configuration_policy_store.cc',
1454 'browser/policy/mock_configuration_policy_store.h', 1455 'browser/policy/mock_configuration_policy_store.h',
1455 'browser/policy/mock_device_management_backend.cc', 1456 'browser/policy/mock_device_management_backend.cc',
(...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after
1931 'sources/': [ 1932 'sources/': [
1932 # TODO(thestig) Enable PrintPreviewUIHTMLSource tests on CrOS when 1933 # TODO(thestig) Enable PrintPreviewUIHTMLSource tests on CrOS when
1933 # print preview is enabled on CrOS. 1934 # print preview is enabled on CrOS.
1934 ['exclude', 'browser/notifications/desktop_notifications_unittest.cc '], 1935 ['exclude', 'browser/notifications/desktop_notifications_unittest.cc '],
1935 ['exclude', 'browser/ui/webui/print_preview_ui_html_source_unittest. cc'], 1936 ['exclude', 'browser/ui/webui/print_preview_ui_html_source_unittest. cc'],
1936 ], 1937 ],
1937 }, { # else: chromeos == 0 1938 }, { # else: chromeos == 0
1938 'sources/': [ 1939 'sources/': [
1939 ['exclude', '^browser/chromeos/'], 1940 ['exclude', '^browser/chromeos/'],
1940 ['exclude', '^browser/policy/device_policy_cache_unittest.cc'], 1941 ['exclude', '^browser/policy/device_policy_cache_unittest.cc'],
1942 ['exclude', '^browser/policy/enterprise_install_attributes_unittest. cc' ],
1941 ['exclude', '^browser/ui/webui/chromeos/login'], 1943 ['exclude', '^browser/ui/webui/chromeos/login'],
1942 ], 1944 ],
1943 }], 1945 }],
1944 ['OS=="linux"', { 1946 ['OS=="linux"', {
1945 'conditions': [ 1947 'conditions': [
1946 ['gcc_version==44', { 1948 ['gcc_version==44', {
1947 # Avoid gcc 4.4 strict aliasing issues in stl_tree.h when 1949 # Avoid gcc 4.4 strict aliasing issues in stl_tree.h when
1948 # building mru_cache_unittest.cc. 1950 # building mru_cache_unittest.cc.
1949 'cflags': [ 1951 'cflags': [
1950 '-fno-strict-aliasing', 1952 '-fno-strict-aliasing',
(...skipping 1919 matching lines...) Expand 10 before | Expand all | Expand 10 after
3870 ] 3872 ]
3871 }], # 'coverage!=0' 3873 }], # 'coverage!=0'
3872 ], # 'conditions' 3874 ], # 'conditions'
3873 } 3875 }
3874 3876
3875 # Local Variables: 3877 # Local Variables:
3876 # tab-width:2 3878 # tab-width:2
3877 # indent-tabs-mode:nil 3879 # indent-tabs-mode:nil
3878 # End: 3880 # End:
3879 # vim: set expandtab tabstop=2 shiftwidth=2: 3881 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« chrome/browser/policy/device_policy_cache.cc ('K') | « chrome/chrome_browser.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698