OLD | NEW |
---|---|
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 872 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
883 'renderer/api_test_base.h', | 883 'renderer/api_test_base.h', |
884 'renderer/api_test_base_unittest.cc', | 884 'renderer/api_test_base_unittest.cc', |
885 'renderer/event_unittest.cc', | 885 'renderer/event_unittest.cc', |
886 'renderer/json_schema_unittest.cc', | 886 'renderer/json_schema_unittest.cc', |
887 'renderer/messaging_utils_unittest.cc', | 887 'renderer/messaging_utils_unittest.cc', |
888 'renderer/module_system_test.cc', | 888 'renderer/module_system_test.cc', |
889 'renderer/module_system_test.h', | 889 'renderer/module_system_test.h', |
890 'renderer/module_system_unittest.cc', | 890 'renderer/module_system_unittest.cc', |
891 'renderer/safe_builtins_unittest.cc', | 891 'renderer/safe_builtins_unittest.cc', |
892 'renderer/utils_unittest.cc', | 892 'renderer/utils_unittest.cc', |
893 'renderer/activity_log_converter_strategy_unittest.cc', | |
James Cook
2014/08/15 16:25:54
optional: I know we aren't compiling tests yet wit
tfarina
2014/08/16 21:45:13
Done.
| |
894 'renderer/script_context_set_unittest.cc', | |
893 'test/extensions_unittests_main.cc', | 895 'test/extensions_unittests_main.cc', |
894 'test/test_extensions_client.cc', | 896 'test/test_extensions_client.cc', |
895 'test/test_extensions_client.h', | 897 'test/test_extensions_client.h', |
896 'test/test_permission_message_provider.cc', | 898 'test/test_permission_message_provider.cc', |
897 'test/test_permission_message_provider.h', | 899 'test/test_permission_message_provider.h', |
898 'test/test_permissions_provider.cc', | 900 'test/test_permissions_provider.cc', |
899 'test/test_permissions_provider.h', | 901 'test/test_permissions_provider.h', |
900 ], | 902 ], |
901 # Disable c4267 warnings until we fix size_t to int truncations. | 903 # Disable c4267 warnings until we fix size_t to int truncations. |
902 'msvs_disabled_warnings': [ 4267, ], | 904 'msvs_disabled_warnings': [ 4267, ], |
(...skipping 15 matching lines...) Expand all Loading... | |
918 'browser/api/cast_channel/logging.proto' | 920 'browser/api/cast_channel/logging.proto' |
919 ], | 921 ], |
920 'variables': { | 922 'variables': { |
921 'proto_in_dir': 'browser/api/cast_channel', | 923 'proto_in_dir': 'browser/api/cast_channel', |
922 'proto_out_dir': 'extensions/browser/api/cast_channel', | 924 'proto_out_dir': 'extensions/browser/api/cast_channel', |
923 }, | 925 }, |
924 'includes': [ '../build/protoc.gypi' ] | 926 'includes': [ '../build/protoc.gypi' ] |
925 }, | 927 }, |
926 ] | 928 ] |
927 } | 929 } |
OLD | NEW |