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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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 ['OS=="android"', { | 328 ['OS=="android"', { |
329 'sources!': [ | 329 'sources!': [ |
330 'renderer/automation/automation_renderer_helper.cc', | |
jam
2013/01/22 21:27:08
can you make it exclude all of renderer/automation
Jay Civelli
2013/01/22 21:55:25
I changed it to use ENABLE_AUTOMATION.
| |
331 'renderer/automation/automation_renderer_helper.h', | |
330 'renderer/prerender/prerender_webmediaplayer.cc', | 332 'renderer/prerender/prerender_webmediaplayer.cc', |
331 'renderer/prerender/prerender_webmediaplayer.h', | 333 'renderer/prerender/prerender_webmediaplayer.h', |
332 'renderer/print_web_view_helper.cc', | 334 'renderer/print_web_view_helper.cc', |
333 ], | 335 ], |
334 'defines': [ | 336 'defines': [ |
335 'ENABLE_MOBILE_YOUTUBE_PLUGIN', | 337 'ENABLE_MOBILE_YOUTUBE_PLUGIN', |
336 ], | 338 ], |
337 }], | 339 }], |
338 ['OS=="win"', { | 340 ['OS=="win"', { |
339 'include_dirs': [ | 341 'include_dirs': [ |
340 '<(DEPTH)/third_party/wtl/include', | 342 '<(DEPTH)/third_party/wtl/include', |
341 ], | 343 ], |
342 'conditions': [ | 344 'conditions': [ |
343 ['win_use_allocator_shim==1', { | 345 ['win_use_allocator_shim==1', { |
344 'dependencies': [ | 346 'dependencies': [ |
345 '<(allocator_target)', | 347 '<(allocator_target)', |
346 ], | 348 ], |
347 'export_dependent_settings': [ | 349 'export_dependent_settings': [ |
348 '<(allocator_target)', | 350 '<(allocator_target)', |
349 ], | 351 ], |
350 }], | 352 }], |
351 ], | 353 ], |
352 }], | 354 }], |
353 ], | 355 ], |
354 }, | 356 }, |
355 ], | 357 ], |
356 } | 358 } |
OLD | NEW |