| 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 '../ppapi/ppapi_internal.gyp:ppapi_proxy', | 9 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
| 10 '../ppapi/ppapi_internal.gyp:ppapi_shared', | 10 '../ppapi/ppapi_internal.gyp:ppapi_shared', |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 ], | 320 ], |
| 321 }, { | 321 }, { |
| 322 'sources!': [ | 322 'sources!': [ |
| 323 'renderer/java/java_bridge_channel.cc', | 323 'renderer/java/java_bridge_channel.cc', |
| 324 'renderer/java/java_bridge_channel.h', | 324 'renderer/java/java_bridge_channel.h', |
| 325 'renderer/java/java_bridge_dispatcher.cc', | 325 'renderer/java/java_bridge_dispatcher.cc', |
| 326 'renderer/java/java_bridge_dispatcher.h', | 326 'renderer/java/java_bridge_dispatcher.h', |
| 327 ], | 327 ], |
| 328 }], | 328 }], |
| 329 ], | 329 ], |
| 330 'target_conditions': [ |
| 331 ['OS=="android"', { |
| 332 'sources/': [ |
| 333 ['include', '^renderer/render_view_linux\\.cc$'], |
| 334 ], |
| 335 }], |
| 336 ], |
| 330 } | 337 } |
| OLD | NEW |