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 878 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
889 'msvs_disabled_warnings': [ 4267, ], | 889 'msvs_disabled_warnings': [ 4267, ], |
890 'conditions': [ | 890 'conditions': [ |
891 # Temporary conditions for Android until it can stop building | 891 # Temporary conditions for Android until it can stop building |
892 # the extensions module altogether. These exemptions are taken | 892 # the extensions module altogether. These exemptions are taken |
893 # directly from chrome_renderer.gypi as sources are moved | 893 # directly from chrome_renderer.gypi as sources are moved |
894 # from //chrome/renderer to //extensions/renderer. | 894 # from //chrome/renderer to //extensions/renderer. |
895 ['OS == "android"', { | 895 ['OS == "android"', { |
896 'sources!': [ | 896 'sources!': [ |
897 'renderer/api_definitions_natives.cc', | 897 'renderer/api_definitions_natives.cc', |
898 'renderer/context_menus_custom_bindings.cc', | 898 'renderer/context_menus_custom_bindings.cc', |
| 899 'renderer/dispatcher.cc', |
| 900 'renderer/dispatcher.h', |
899 'renderer/render_view_observer_natives.cc', | 901 'renderer/render_view_observer_natives.cc', |
900 'renderer/send_request_natives.cc', | 902 'renderer/send_request_natives.cc', |
| 903 'renderer/user_script_injector.cc', |
| 904 'renderer/user_script_injector.h', |
| 905 'renderer/user_script_set.cc', |
| 906 'renderer/user_script_set.h', |
| 907 'renderer/user_script_set_manager.cc', |
| 908 'renderer/user_script_set_manager.h', |
901 ], | 909 ], |
902 }], | 910 }], |
903 ] | 911 ] |
904 }, | 912 }, |
905 { | 913 { |
906 # GN version: //extensions:test_support | 914 # GN version: //extensions:test_support |
907 'target_name': 'extensions_test_support', | 915 'target_name': 'extensions_test_support', |
908 'type': 'static_library', | 916 'type': 'static_library', |
909 'dependencies': [ | 917 'dependencies': [ |
910 '../base/base.gyp:base', | 918 '../base/base.gyp:base', |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1151 'browser/api/cast_channel/logging.proto' | 1159 'browser/api/cast_channel/logging.proto' |
1152 ], | 1160 ], |
1153 'variables': { | 1161 'variables': { |
1154 'proto_in_dir': 'browser/api/cast_channel', | 1162 'proto_in_dir': 'browser/api/cast_channel', |
1155 'proto_out_dir': 'extensions/browser/api/cast_channel', | 1163 'proto_out_dir': 'extensions/browser/api/cast_channel', |
1156 }, | 1164 }, |
1157 'includes': [ '../build/protoc.gypi' ] | 1165 'includes': [ '../build/protoc.gypi' ] |
1158 }, | 1166 }, |
1159 ] | 1167 ] |
1160 } | 1168 } |
OLD | NEW |