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 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 'include_dirs': [ | 318 'include_dirs': [ |
319 '../third_party/cld', | 319 '../third_party/cld', |
320 ], | 320 ], |
321 }], | 321 }], |
322 ['toolkit_uses_gtk == 1', { | 322 ['toolkit_uses_gtk == 1', { |
323 'dependencies': [ | 323 'dependencies': [ |
324 '../build/linux/system.gyp:gtk', | 324 '../build/linux/system.gyp:gtk', |
325 '../sandbox/sandbox.gyp:sandbox', | 325 '../sandbox/sandbox.gyp:sandbox', |
326 ], | 326 ], |
327 }], | 327 }], |
| 328 ['enable_automation==0', { |
| 329 'sources/': [ |
| 330 ['exclude', '^renderer/automation/'] |
| 331 ] |
| 332 }], |
328 ['OS=="android"', { | 333 ['OS=="android"', { |
329 'sources!': [ | 334 'sources!': [ |
330 'renderer/prerender/prerender_webmediaplayer.cc', | 335 'renderer/prerender/prerender_webmediaplayer.cc', |
331 'renderer/prerender/prerender_webmediaplayer.h', | 336 'renderer/prerender/prerender_webmediaplayer.h', |
332 'renderer/print_web_view_helper.cc', | 337 'renderer/print_web_view_helper.cc', |
333 ], | 338 ], |
334 'defines': [ | 339 'defines': [ |
335 'ENABLE_MOBILE_YOUTUBE_PLUGIN', | 340 'ENABLE_MOBILE_YOUTUBE_PLUGIN', |
336 ], | 341 ], |
337 }], | 342 }], |
338 ['OS=="win"', { | 343 ['OS=="win"', { |
339 'include_dirs': [ | 344 'include_dirs': [ |
340 '<(DEPTH)/third_party/wtl/include', | 345 '<(DEPTH)/third_party/wtl/include', |
341 ], | 346 ], |
342 'conditions': [ | 347 'conditions': [ |
343 ['win_use_allocator_shim==1', { | 348 ['win_use_allocator_shim==1', { |
344 'dependencies': [ | 349 'dependencies': [ |
345 '<(allocator_target)', | 350 '<(allocator_target)', |
346 ], | 351 ], |
347 'export_dependent_settings': [ | 352 'export_dependent_settings': [ |
348 '<(allocator_target)', | 353 '<(allocator_target)', |
349 ], | 354 ], |
350 }], | 355 }], |
351 ], | 356 ], |
352 }], | 357 }], |
353 ], | 358 ], |
354 }, | 359 }, |
355 ], | 360 ], |
356 } | 361 } |
OLD | NEW |