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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 'renderer/validation_message_agent.cc', | 330 'renderer/validation_message_agent.cc', |
331 'renderer/validation_message_agent.h', | 331 'renderer/validation_message_agent.h', |
332 'renderer/web_apps.cc', | 332 'renderer/web_apps.cc', |
333 'renderer/web_apps.h', | 333 'renderer/web_apps.h', |
334 'renderer/webview_color_overlay.cc', | 334 'renderer/webview_color_overlay.cc', |
335 'renderer/webview_color_overlay.h', | 335 'renderer/webview_color_overlay.h', |
336 ], | 336 ], |
337 'conditions': [ | 337 'conditions': [ |
338 ['disable_nacl!=1', { | 338 ['disable_nacl!=1', { |
339 'dependencies': [ | 339 'dependencies': [ |
340 'nacl', | 340 '../components/nacl.gyp:nacl', |
341 ], | 341 ], |
342 }], | 342 }], |
343 ['enable_plugins==1', { | 343 ['enable_plugins==1', { |
344 'dependencies': [ | 344 'dependencies': [ |
345 '../ppapi/ppapi_internal.gyp:ppapi_host', | 345 '../ppapi/ppapi_internal.gyp:ppapi_host', |
346 '../ppapi/ppapi_internal.gyp:ppapi_proxy', | 346 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
347 '../ppapi/ppapi_internal.gyp:ppapi_ipc', | 347 '../ppapi/ppapi_internal.gyp:ppapi_ipc', |
348 '../ppapi/ppapi_internal.gyp:ppapi_shared', | 348 '../ppapi/ppapi_internal.gyp:ppapi_shared', |
349 ], | 349 ], |
350 }, { # enable_plugins==0 | 350 }, { # enable_plugins==0 |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
419 'export_dependent_settings': [ | 419 'export_dependent_settings': [ |
420 '<(allocator_target)', | 420 '<(allocator_target)', |
421 ], | 421 ], |
422 }], | 422 }], |
423 ], | 423 ], |
424 }], | 424 }], |
425 ], | 425 ], |
426 }, | 426 }, |
427 ], | 427 ], |
428 } | 428 } |
OLD | NEW |