| 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_host', | 9 '../ppapi/ppapi_internal.gyp:ppapi_host', |
| 10 '../ppapi/ppapi_internal.gyp:ppapi_proxy', | 10 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
| 11 '../ppapi/ppapi_internal.gyp:ppapi_shared', | 11 '../ppapi/ppapi_internal.gyp:ppapi_shared', |
| 12 '../skia/skia.gyp:skia', | 12 '../skia/skia.gyp:skia', |
| 13 '../third_party/hyphen/hyphen.gyp:hyphen', | 13 '../third_party/hyphen/hyphen.gyp:hyphen', |
| 14 '../third_party/icu/icu.gyp:icuuc', | 14 '../third_party/icu/icu.gyp:icuuc', |
| 15 '../third_party/icu/icu.gyp:icui18n', | 15 '../third_party/icu/icu.gyp:icui18n', |
| 16 '../third_party/libjingle/libjingle.gyp:libjingle', | 16 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 17 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', | 17 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', |
| 18 '../third_party/npapi/npapi.gyp:npapi', | 18 '../third_party/npapi/npapi.gyp:npapi', |
| 19 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', | 19 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', |
| 20 '../ui/surface/surface.gyp:surface', | 20 '../ui/surface/surface.gyp:surface', |
| 21 '../v8/tools/gyp/v8.gyp:v8', | 21 '../v8/tools/gyp/v8.gyp:v8', |
| 22 '../webkit/support/webkit_support.gyp:forms', |
| 22 '../webkit/support/webkit_support.gyp:glue', | 23 '../webkit/support/webkit_support.gyp:glue', |
| 23 '../webkit/support/webkit_support.gyp:webkit_media', | 24 '../webkit/support/webkit_support.gyp:webkit_media', |
| 24 '../webkit/support/webkit_support.gyp:webkit_gpu', | 25 '../webkit/support/webkit_support.gyp:webkit_gpu', |
| 25 ], | 26 ], |
| 26 'include_dirs': [ | 27 'include_dirs': [ |
| 27 '..', | 28 '..', |
| 28 ], | 29 ], |
| 29 'sources': [ | 30 'sources': [ |
| 30 'public/renderer/content_renderer_client.cc', | 31 'public/renderer/content_renderer_client.cc', |
| 31 'public/renderer/content_renderer_client.h', | 32 'public/renderer/content_renderer_client.h', |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 }], | 359 }], |
| 359 ], | 360 ], |
| 360 'target_conditions': [ | 361 'target_conditions': [ |
| 361 ['OS=="android"', { | 362 ['OS=="android"', { |
| 362 'sources/': [ | 363 'sources/': [ |
| 363 ['include', '^renderer/render_view_linux\\.cc$'], | 364 ['include', '^renderer/render_view_linux\\.cc$'], |
| 364 ], | 365 ], |
| 365 }], | 366 }], |
| 366 ], | 367 ], |
| 367 } | 368 } |
| OLD | NEW |