| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 '../skia/skia.gyp:skia', | 10 '../skia/skia.gyp:skia', |
| 11 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 11 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
| 12 '../third_party/icu/icu.gyp:icuuc', | 12 '../third_party/icu/icu.gyp:icuuc', |
| 13 '../third_party/icu/icu.gyp:icui18n', | 13 '../third_party/icu/icu.gyp:icui18n', |
| 14 '../third_party/libjingle/libjingle.gyp:libjingle', | 14 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 15 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', | 15 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', |
| 16 '../third_party/npapi/npapi.gyp:npapi', | 16 '../third_party/npapi/npapi.gyp:npapi', |
| 17 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 17 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
| 18 '../ui/gfx/surface/surface.gyp:surface', | 18 '../ui/gfx/surface/surface.gyp:surface', |
| 19 '../v8/tools/gyp/v8.gyp:v8', | 19 '../v8/tools/gyp/v8.gyp:v8', |
| 20 '../webkit/support/webkit_support.gyp:webkit_gpu', | 20 '../webkit/support/webkit_support.gyp:webkit_gpu', |
| 21 ], | 21 ], |
| 22 'include_dirs': [ | 22 'include_dirs': [ |
| 23 '..', | 23 '..', |
| 24 ], | 24 ], |
| 25 'sources': [ | 25 'sources': [ |
| 26 'public/renderer/content_renderer_client.h', | 26 'public/renderer/content_renderer_client.h', |
| 27 'public/renderer/document_state.cc', |
| 28 'public/renderer/document_state.h', |
| 27 'public/renderer/navigation_state.cc', | 29 'public/renderer/navigation_state.cc', |
| 28 'public/renderer/navigation_state.h', | 30 'public/renderer/navigation_state.h', |
| 29 'public/renderer/render_process_observer.cc', | 31 'public/renderer/render_process_observer.cc', |
| 30 'public/renderer/render_process_observer.h', | 32 'public/renderer/render_process_observer.h', |
| 31 'public/renderer/render_thread.cc', | 33 'public/renderer/render_thread.cc', |
| 32 'public/renderer/render_thread.h', | 34 'public/renderer/render_thread.h', |
| 33 'public/renderer/render_view.h', | 35 'public/renderer/render_view.h', |
| 34 'public/renderer/render_view_observer.cc', | 36 'public/renderer/render_view_observer.cc', |
| 35 'public/renderer/render_view_observer.h', | 37 'public/renderer/render_view_observer.h', |
| 36 'public/renderer/render_view_observer_tracker.h', | 38 'public/renderer/render_view_observer_tracker.h', |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 }, { | 272 }, { |
| 271 'sources!': [ | 273 'sources!': [ |
| 272 'renderer/java/java_bridge_channel.cc', | 274 'renderer/java/java_bridge_channel.cc', |
| 273 'renderer/java/java_bridge_channel.h', | 275 'renderer/java/java_bridge_channel.h', |
| 274 'renderer/java/java_bridge_dispatcher.cc', | 276 'renderer/java/java_bridge_dispatcher.cc', |
| 275 'renderer/java/java_bridge_dispatcher.h', | 277 'renderer/java/java_bridge_dispatcher.h', |
| 276 ], | 278 ], |
| 277 }], | 279 }], |
| 278 ], | 280 ], |
| 279 } | 281 } |
| OLD | NEW |