| 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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 ['enable_plugins==1', { | 383 ['enable_plugins==1', { |
| 384 'dependencies': [ | 384 'dependencies': [ |
| 385 '../ppapi/ppapi_internal.gyp:ppapi_host', | 385 '../ppapi/ppapi_internal.gyp:ppapi_host', |
| 386 '../ppapi/ppapi_internal.gyp:ppapi_proxy', | 386 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
| 387 '../ppapi/ppapi_internal.gyp:ppapi_shared', | 387 '../ppapi/ppapi_internal.gyp:ppapi_shared', |
| 388 ], | 388 ], |
| 389 }, { # enable_plugins==0 | 389 }, { # enable_plugins==0 |
| 390 'sources/': [ | 390 'sources/': [ |
| 391 ['exclude', '^renderer/pepper/'], | 391 ['exclude', '^renderer/pepper/'], |
| 392 ], | 392 ], |
| 393 'sources!': [ |
| 394 'renderer/render_widget_fullscreen_pepper.cc', |
| 395 'renderer/render_widget_fullscreen_pepper.h', |
| 396 ], |
| 393 }], | 397 }], |
| 394 ['java_bridge==1', { | 398 ['java_bridge==1', { |
| 395 'defines': [ | 399 'defines': [ |
| 396 'ENABLE_JAVA_BRIDGE', | 400 'ENABLE_JAVA_BRIDGE', |
| 397 ], | 401 ], |
| 398 }, { | 402 }, { |
| 399 'sources!': [ | 403 'sources!': [ |
| 400 'renderer/java/java_bridge_channel.cc', | 404 'renderer/java/java_bridge_channel.cc', |
| 401 'renderer/java/java_bridge_channel.h', | 405 'renderer/java/java_bridge_channel.h', |
| 402 'renderer/java/java_bridge_dispatcher.cc', | 406 'renderer/java/java_bridge_dispatcher.cc', |
| 403 'renderer/java/java_bridge_dispatcher.h', | 407 'renderer/java/java_bridge_dispatcher.h', |
| 404 ], | 408 ], |
| 405 }], | 409 }], |
| 406 ], | 410 ], |
| 407 'target_conditions': [ | 411 'target_conditions': [ |
| 408 ['OS=="android"', { | 412 ['OS=="android"', { |
| 409 'sources/': [ | 413 'sources/': [ |
| 410 ['include', '^renderer/render_view_linux\\.cc$'], | 414 ['include', '^renderer/render_view_linux\\.cc$'], |
| 411 ], | 415 ], |
| 412 }], | 416 }], |
| 413 ], | 417 ], |
| 414 } | 418 } |
| OLD | NEW |