| 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 10 matching lines...) Expand all Loading... |
| 21 '../content/content.gyp:content_common', | 21 '../content/content.gyp:content_common', |
| 22 '../crypto/crypto.gyp:crypto', | 22 '../crypto/crypto.gyp:crypto', |
| 23 '../ipc/ipc.gyp:ipc', | 23 '../ipc/ipc.gyp:ipc', |
| 24 '../net/net.gyp:net', | 24 '../net/net.gyp:net', |
| 25 '../third_party/re2/re2.gyp:re2', | 25 '../third_party/re2/re2.gyp:re2', |
| 26 '../ui/base/ui_base.gyp:ui_base', | 26 '../ui/base/ui_base.gyp:ui_base', |
| 27 '../ui/gfx/gfx.gyp:gfx_geometry', | 27 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 28 '../ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc', | 28 '../ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc', |
| 29 '../url/url.gyp:url_lib', | 29 '../url/url.gyp:url_lib', |
| 30 '../third_party/libxml/libxml.gyp:libxml', | 30 '../third_party/libxml/libxml.gyp:libxml', |
| 31 'common/api/api.gyp:extensions_api', | |
| 32 'extensions_strings.gyp:extensions_strings', | 31 'extensions_strings.gyp:extensions_strings', |
| 33 ], | 32 ], |
| 34 'include_dirs': [ | 33 'include_dirs': [ |
| 35 '..', | 34 '..', |
| 36 '<(INTERMEDIATE_DIR)', | 35 '<(INTERMEDIATE_DIR)', |
| 37 ], | 36 ], |
| 38 'sources': [ | 37 'sources': [ |
| 39 # Note: sources list duplicated in GN build. | 38 # Note: sources list duplicated in GN build. |
| 40 'common/api/bluetooth/bluetooth_manifest_data.cc', | 39 'common/api/bluetooth/bluetooth_manifest_data.cc', |
| 41 'common/api/bluetooth/bluetooth_manifest_data.h', | 40 'common/api/bluetooth/bluetooth_manifest_data.h', |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 'common/value_counter.cc', | 217 'common/value_counter.cc', |
| 219 'common/value_counter.h', | 218 'common/value_counter.h', |
| 220 'common/view_type.cc', | 219 'common/view_type.cc', |
| 221 'common/view_type.h', | 220 'common/view_type.h', |
| 222 ], | 221 ], |
| 223 # Disable c4267 warnings until we fix size_t to int truncations. | 222 # Disable c4267 warnings until we fix size_t to int truncations. |
| 224 'msvs_disabled_warnings': [ 4267, ], | 223 'msvs_disabled_warnings': [ 4267, ], |
| 225 'conditions': [ | 224 'conditions': [ |
| 226 ['enable_extensions==1', { | 225 ['enable_extensions==1', { |
| 227 'dependencies': [ | 226 'dependencies': [ |
| 227 'common/api/api.gyp:extensions_api', |
| 228 '../device/bluetooth/bluetooth.gyp:device_bluetooth', | 228 '../device/bluetooth/bluetooth.gyp:device_bluetooth', |
| 229 # For Mojo generated headers for generated_api.cc. | 229 # For Mojo generated headers for generated_api.cc. |
| 230 '../device/serial/serial.gyp:device_serial_mojo', | 230 '../device/serial/serial.gyp:device_serial_mojo', |
| 231 '../device/usb/usb.gyp:device_usb', | 231 '../device/usb/usb.gyp:device_usb', |
| 232 ], | 232 ], |
| 233 'sources!': [ | 233 'sources!': [ |
| 234 'common/extension_api_stub.cc', | 234 'common/extension_api_stub.cc', |
| 235 ], | 235 ], |
| 236 }, { # enable_extensions == 0 | 236 }, { # enable_extensions == 0 |
| 237 'sources!': [ | 237 'sources!': [ |
| (...skipping 905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1143 'browser/api/cast_channel/logging.proto' | 1143 'browser/api/cast_channel/logging.proto' |
| 1144 ], | 1144 ], |
| 1145 'variables': { | 1145 'variables': { |
| 1146 'proto_in_dir': 'browser/api/cast_channel', | 1146 'proto_in_dir': 'browser/api/cast_channel', |
| 1147 'proto_out_dir': 'extensions/browser/api/cast_channel', | 1147 'proto_out_dir': 'extensions/browser/api/cast_channel', |
| 1148 }, | 1148 }, |
| 1149 'includes': [ '../build/protoc.gypi' ] | 1149 'includes': [ '../build/protoc.gypi' ] |
| 1150 }, | 1150 }, |
| 1151 ] | 1151 ] |
| 1152 } | 1152 } |
| OLD | NEW |