| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # Set this to run the jscompile checks after building the webapp. | 9 # Set this to run the jscompile checks after building the webapp. |
| 10 'run_jscompile%': 0, | 10 'run_jscompile%': 0, |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 'includes': [ '../build/grit_target.gypi' ], | 253 'includes': [ '../build/grit_target.gypi' ], |
| 254 }, # end of target 'remoting_resources' | 254 }, # end of target 'remoting_resources' |
| 255 | 255 |
| 256 { | 256 { |
| 257 'target_name': 'remoting_base', | 257 'target_name': 'remoting_base', |
| 258 'type': 'static_library', | 258 'type': 'static_library', |
| 259 'variables': { 'enable_wexit_time_destructors': 1, }, | 259 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 260 'dependencies': [ | 260 'dependencies': [ |
| 261 '../base/base.gyp:base', | 261 '../base/base.gyp:base', |
| 262 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 262 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 263 '../ui/gfx/gfx.gyp:gfx', | 263 '../media/media.gyp:media', |
| 264 '../ui/gfx/gfx.gyp:gfx_geometry', | 264 '../media/media.gyp:shared_memory_support', |
| 265 '../ui/ui.gyp:ui', | |
| 266 '../net/net.gyp:net', | 265 '../net/net.gyp:net', |
| 267 '../third_party/libvpx/libvpx.gyp:libvpx', | 266 '../third_party/libvpx/libvpx.gyp:libvpx', |
| 268 '../third_party/libyuv/libyuv.gyp:libyuv', | 267 '../third_party/libyuv/libyuv.gyp:libyuv', |
| 269 '../third_party/opus/opus.gyp:opus', | 268 '../third_party/opus/opus.gyp:opus', |
| 270 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 269 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 271 '../media/media.gyp:media', | 270 '../third_party/webrtc/modules/modules.gyp:desktop_capture', |
| 272 '../media/media.gyp:shared_memory_support', | 271 '../ui/base/ui_base.gyp:ui_base', |
| 272 '../ui/gfx/gfx.gyp:gfx', |
| 273 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 274 'proto/chromotocol.gyp:chromotocol_proto_lib', |
| 273 'remoting_resources', | 275 'remoting_resources', |
| 274 'proto/chromotocol.gyp:chromotocol_proto_lib', | |
| 275 '../third_party/webrtc/modules/modules.gyp:desktop_capture', | |
| 276 ], | 276 ], |
| 277 'export_dependent_settings': [ | 277 'export_dependent_settings': [ |
| 278 '../base/base.gyp:base', | 278 '../base/base.gyp:base', |
| 279 '../net/net.gyp:net', | 279 '../net/net.gyp:net', |
| 280 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 280 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 281 'proto/chromotocol.gyp:chromotocol_proto_lib', | 281 'proto/chromotocol.gyp:chromotocol_proto_lib', |
| 282 ], | 282 ], |
| 283 # This target needs a hard dependency because dependent targets | 283 # This target needs a hard dependency because dependent targets |
| 284 # depend on chromotocol_proto_lib for headers. | 284 # depend on chromotocol_proto_lib for headers. |
| 285 'hard_dependency': 1, | 285 'hard_dependency': 1, |
| (...skipping 17 matching lines...) Expand all Loading... |
| 303 ], | 303 ], |
| 304 'export_dependent_settings': [ | 304 'export_dependent_settings': [ |
| 305 '../third_party/libjingle/libjingle.gyp:libjingle', | 305 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 306 ], | 306 ], |
| 307 'sources': [ | 307 'sources': [ |
| 308 '<@(remoting_protocol_sources)', | 308 '<@(remoting_protocol_sources)', |
| 309 ], | 309 ], |
| 310 }, # end of target 'remoting_protocol' | 310 }, # end of target 'remoting_protocol' |
| 311 ], # end of targets | 311 ], # end of targets |
| 312 } | 312 } |
| OLD | NEW |