| 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 'include_dirs': [ | 286 'include_dirs': [ |
| 287 '..', | 287 '..', |
| 288 '<(INTERMEDIATE_DIR)', | 288 '<(INTERMEDIATE_DIR)', |
| 289 # Needed to access generated API headers. | 289 # Needed to access generated API headers. |
| 290 '<(SHARED_INTERMEDIATE_DIR)', | 290 '<(SHARED_INTERMEDIATE_DIR)', |
| 291 # Needed for grit. | 291 # Needed for grit. |
| 292 '<(SHARED_INTERMEDIATE_DIR)/chrome', | 292 '<(SHARED_INTERMEDIATE_DIR)/chrome', |
| 293 ], | 293 ], |
| 294 'sources': [ | 294 'sources': [ |
| 295 # Note: sources list duplicated in GN build. | 295 # Note: sources list duplicated in GN build. |
| 296 'browser/admin_policy.cc', | |
| 297 'browser/admin_policy.h', | |
| 298 # NOTE: When moving an API out of Chrome be sure to verify that the | 296 # NOTE: When moving an API out of Chrome be sure to verify that the |
| 299 # Android build still compiles. See conditions below. | 297 # Android build still compiles. See conditions below. |
| 300 'browser/api/api_resource.cc', | 298 'browser/api/api_resource.cc', |
| 301 'browser/api/api_resource.h', | 299 'browser/api/api_resource.h', |
| 302 'browser/api/api_resource_manager.h', | 300 'browser/api/api_resource_manager.h', |
| 303 'browser/api/app_runtime/app_runtime_api.cc', | 301 'browser/api/app_runtime/app_runtime_api.cc', |
| 304 'browser/api/app_runtime/app_runtime_api.h', | 302 'browser/api/app_runtime/app_runtime_api.h', |
| 305 'browser/api/app_view/app_view_internal_api.cc', | 303 'browser/api/app_view/app_view_internal_api.cc', |
| 306 'browser/api/app_view/app_view_internal_api.h', | 304 'browser/api/app_view/app_view_internal_api.h', |
| 307 'browser/api/guest_view/guest_view_internal_api.cc', | 305 'browser/api/guest_view/guest_view_internal_api.cc', |
| (...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 953 'extensions_resources.gyp:extensions_resources', | 951 'extensions_resources.gyp:extensions_resources', |
| 954 'extensions_shell_and_test_pak', | 952 'extensions_shell_and_test_pak', |
| 955 'extensions_strings.gyp:extensions_strings', | 953 'extensions_strings.gyp:extensions_strings', |
| 956 'extensions_test_support', | 954 'extensions_test_support', |
| 957 ], | 955 ], |
| 958 # Needed for third_party libraries like leveldb. | 956 # Needed for third_party libraries like leveldb. |
| 959 'include_dirs': [ | 957 'include_dirs': [ |
| 960 '..', | 958 '..', |
| 961 ], | 959 ], |
| 962 'sources': [ | 960 'sources': [ |
| 963 'browser/admin_policy_unittest.cc', | |
| 964 'browser/api/api_resource_manager_unittest.cc', | 961 'browser/api/api_resource_manager_unittest.cc', |
| 965 'browser/api/declarative/deduping_factory_unittest.cc', | 962 'browser/api/declarative/deduping_factory_unittest.cc', |
| 966 'browser/api/sockets_tcp/sockets_tcp_api_unittest.cc', | 963 'browser/api/sockets_tcp/sockets_tcp_api_unittest.cc', |
| 967 'browser/api/storage/settings_quota_unittest.cc', | 964 'browser/api/storage/settings_quota_unittest.cc', |
| 968 'browser/api/storage/storage_api_unittest.cc', | 965 'browser/api/storage/storage_api_unittest.cc', |
| 969 'browser/api/storage/storage_frontend_unittest.cc', | 966 'browser/api/storage/storage_frontend_unittest.cc', |
| 970 'browser/computed_hashes_unittest.cc', | 967 'browser/computed_hashes_unittest.cc', |
| 971 'browser/content_hash_tree_unittest.cc', | 968 'browser/content_hash_tree_unittest.cc', |
| 972 'browser/event_listener_map_unittest.cc', | 969 'browser/event_listener_map_unittest.cc', |
| 973 'browser/event_router_unittest.cc', | 970 'browser/event_router_unittest.cc', |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1045 'browser/api/cast_channel/logging.proto' | 1042 'browser/api/cast_channel/logging.proto' |
| 1046 ], | 1043 ], |
| 1047 'variables': { | 1044 'variables': { |
| 1048 'proto_in_dir': 'browser/api/cast_channel', | 1045 'proto_in_dir': 'browser/api/cast_channel', |
| 1049 'proto_out_dir': 'extensions/browser/api/cast_channel', | 1046 'proto_out_dir': 'extensions/browser/api/cast_channel', |
| 1050 }, | 1047 }, |
| 1051 'includes': [ '../build/protoc.gypi' ] | 1048 'includes': [ '../build/protoc.gypi' ] |
| 1052 }, | 1049 }, |
| 1053 ] | 1050 ] |
| 1054 } | 1051 } |
| OLD | NEW |