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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'renderer', | 8 'target_name': 'renderer', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'variables': { 'enable_wexit_time_destructors': 1, }, | 10 'variables': { 'enable_wexit_time_destructors': 1, }, |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
340 ], | 340 ], |
341 'dependencies': [ | 341 'dependencies': [ |
342 'safe_browsing_proto', | 342 'safe_browsing_proto', |
343 '../third_party/smhasher/smhasher.gyp:murmurhash3', | 343 '../third_party/smhasher/smhasher.gyp:murmurhash3', |
344 ], | 344 ], |
345 }, { # safe_browsing==0 || safe_browsing==2 | 345 }, { # safe_browsing==0 || safe_browsing==2 |
346 'sources/': [ | 346 'sources/': [ |
347 ['exclude', '^renderer/safe_browsing/'], | 347 ['exclude', '^renderer/safe_browsing/'], |
348 ], | 348 ], |
349 }], | 349 }], |
350 ['enable_webrtc==1', { | |
351 'dependencies': [ | |
352 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc', | |
353 '../third_party/libjingle/libjingle.gyp:libpeerconnection', | |
354 ], | |
355 'sources': [ | |
356 'renderer/media/webrtc_logging_handler_impl.cc', | |
sky
2013/05/22 16:19:32
Same comment as chrome_browser.gypi
Henrik Grunell
2013/05/23 12:50:11
Done.
| |
357 'renderer/media/webrtc_logging_handler_impl.h', | |
358 'renderer/media/webrtc_logging_message_filter.cc', | |
359 'renderer/media/webrtc_logging_message_filter.h', | |
360 ], | |
361 }], | |
350 ['OS=="mac"', { | 362 ['OS=="mac"', { |
351 'dependencies': [ | 363 'dependencies': [ |
352 '../third_party/mach_override/mach_override.gyp:mach_override', | 364 '../third_party/mach_override/mach_override.gyp:mach_override', |
353 ], | 365 ], |
354 }], | 366 }], |
355 ['enable_language_detection==1', { | 367 ['enable_language_detection==1', { |
356 'dependencies': [ | 368 'dependencies': [ |
357 '../third_party/cld/cld.gyp:cld', | 369 '../third_party/cld/cld.gyp:cld', |
358 ], | 370 ], |
359 'include_dirs': [ | 371 'include_dirs': [ |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
393 'export_dependent_settings': [ | 405 'export_dependent_settings': [ |
394 '<(allocator_target)', | 406 '<(allocator_target)', |
395 ], | 407 ], |
396 }], | 408 }], |
397 ], | 409 ], |
398 }], | 410 }], |
399 ], | 411 ], |
400 }, | 412 }, |
401 ], | 413 ], |
402 } | 414 } |
OLD | NEW |