| 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/icu/icu.gyp:icuuc', | 14 '../third_party/icu/icu.gyp:icuuc', |
| 14 '../third_party/icu/icu.gyp:icui18n', | 15 '../third_party/icu/icu.gyp:icui18n', |
| 15 '../third_party/libjingle/libjingle.gyp:libjingle', | 16 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 16 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', | 17 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', |
| 17 '../third_party/npapi/npapi.gyp:npapi', | 18 '../third_party/npapi/npapi.gyp:npapi', |
| 18 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', | 19 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', |
| 19 '../ui/surface/surface.gyp:surface', | 20 '../ui/surface/surface.gyp:surface', |
| 20 '../v8/tools/gyp/v8.gyp:v8', | 21 '../v8/tools/gyp/v8.gyp:v8', |
| 21 '../webkit/support/webkit_support.gyp:glue', | 22 '../webkit/support/webkit_support.gyp:glue', |
| 22 '../webkit/support/webkit_support.gyp:webkit_media', | 23 '../webkit/support/webkit_support.gyp:webkit_media', |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 'renderer/geolocation_dispatcher.cc', | 78 'renderer/geolocation_dispatcher.cc', |
| 78 'renderer/geolocation_dispatcher.h', | 79 'renderer/geolocation_dispatcher.h', |
| 79 'renderer/gpu/compositor_thread.cc', | 80 'renderer/gpu/compositor_thread.cc', |
| 80 'renderer/gpu/compositor_thread.h', | 81 'renderer/gpu/compositor_thread.h', |
| 81 'renderer/gpu/input_event_filter.cc', | 82 'renderer/gpu/input_event_filter.cc', |
| 82 'renderer/gpu/input_event_filter.h', | 83 'renderer/gpu/input_event_filter.h', |
| 83 'renderer/gpu/gpu_benchmarking_extension.cc', | 84 'renderer/gpu/gpu_benchmarking_extension.cc', |
| 84 'renderer/gpu/gpu_benchmarking_extension.h', | 85 'renderer/gpu/gpu_benchmarking_extension.h', |
| 85 'renderer/gpu/stream_texture_host_android.cc', | 86 'renderer/gpu/stream_texture_host_android.cc', |
| 86 'renderer/gpu/stream_texture_host_android.h', | 87 'renderer/gpu/stream_texture_host_android.h', |
| 88 'renderer/hyphenator/hyphenator.cc', |
| 89 'renderer/hyphenator/hyphenator.h', |
| 87 'renderer/idle_user_detector.cc', | 90 'renderer/idle_user_detector.cc', |
| 88 'renderer/idle_user_detector.h', | 91 'renderer/idle_user_detector.h', |
| 89 'renderer/input_tag_speech_dispatcher.cc', | 92 'renderer/input_tag_speech_dispatcher.cc', |
| 90 'renderer/input_tag_speech_dispatcher.h', | 93 'renderer/input_tag_speech_dispatcher.h', |
| 91 'renderer/java/java_bridge_channel.cc', | 94 'renderer/java/java_bridge_channel.cc', |
| 92 'renderer/java/java_bridge_channel.h', | 95 'renderer/java/java_bridge_channel.h', |
| 93 'renderer/java/java_bridge_dispatcher.cc', | 96 'renderer/java/java_bridge_dispatcher.cc', |
| 94 'renderer/java/java_bridge_dispatcher.h', | 97 'renderer/java/java_bridge_dispatcher.h', |
| 95 'renderer/load_progress_tracker.cc', | 98 'renderer/load_progress_tracker.cc', |
| 96 'renderer/load_progress_tracker.h', | 99 'renderer/load_progress_tracker.h', |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 }], | 348 }], |
| 346 ], | 349 ], |
| 347 'target_conditions': [ | 350 'target_conditions': [ |
| 348 ['OS=="android"', { | 351 ['OS=="android"', { |
| 349 'sources/': [ | 352 'sources/': [ |
| 350 ['include', '^renderer/render_view_linux\\.cc$'], | 353 ['include', '^renderer/render_view_linux\\.cc$'], |
| 351 ], | 354 ], |
| 352 }], | 355 }], |
| 353 ], | 356 ], |
| 354 } | 357 } |
| OLD | NEW |