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 'dependencies': [ | 6 'dependencies': [ |
7 '../jingle/jingle.gyp:jingle_glue', | 7 '../jingle/jingle.gyp:jingle_glue', |
8 '../net/net.gyp:net', | 8 '../net/net.gyp:net', |
9 '../skia/skia.gyp:skia', | 9 '../skia/skia.gyp:skia', |
10 '../third_party/hyphen/hyphen.gyp:hyphen', | 10 '../third_party/hyphen/hyphen.gyp:hyphen', |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 ['OS=="win" and win_use_allocator_shim==1', { | 317 ['OS=="win" and win_use_allocator_shim==1', { |
318 'dependencies': [ | 318 'dependencies': [ |
319 '../base/allocator/allocator.gyp:allocator', | 319 '../base/allocator/allocator.gyp:allocator', |
320 ], | 320 ], |
321 }], | 321 }], |
322 ['OS=="android"', { | 322 ['OS=="android"', { |
323 'dependencies': [ | 323 'dependencies': [ |
324 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', | 324 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', |
325 ], | 325 ], |
326 }], | 326 }], |
| 327 ['enable_web_intents==0', { |
| 328 'sources!': [ |
| 329 'renderer/web_intents_host.cc', |
| 330 'renderer/web_intents_host.h', |
| 331 ], |
| 332 }], |
327 # TODO(jrg): remove the OS=="android" section? | 333 # TODO(jrg): remove the OS=="android" section? |
328 # http://crbug.com/113172 | 334 # http://crbug.com/113172 |
329 # Understand better how media_stream_ is tied into Chromium. | 335 # Understand better how media_stream_ is tied into Chromium. |
330 ['enable_webrtc==0 and OS=="android"', { | 336 ['enable_webrtc==0 and OS=="android"', { |
331 'sources/': [ | 337 'sources/': [ |
332 ['exclude', '^renderer/media/media_stream_'], | 338 ['exclude', '^renderer/media/media_stream_'], |
333 ], | 339 ], |
334 }], | 340 }], |
335 ['enable_webrtc==1', { | 341 ['enable_webrtc==1', { |
336 'dependencies': [ | 342 'dependencies': [ |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
414 }], | 420 }], |
415 ], | 421 ], |
416 'target_conditions': [ | 422 'target_conditions': [ |
417 ['OS=="android"', { | 423 ['OS=="android"', { |
418 'sources/': [ | 424 'sources/': [ |
419 ['include', '^renderer/render_view_linux\\.cc$'], | 425 ['include', '^renderer/render_view_linux\\.cc$'], |
420 ], | 426 ], |
421 }], | 427 }], |
422 ], | 428 ], |
423 } | 429 } |
OLD | NEW |