| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 'renderer/gamepad_shared_memory_reader.cc', | 76 'renderer/gamepad_shared_memory_reader.cc', |
| 76 'renderer/gamepad_shared_memory_reader.h', | 77 'renderer/gamepad_shared_memory_reader.h', |
| 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', |
| 86 'renderer/hyphenator/hyphenator.cc', |
| 87 'renderer/hyphenator/hyphenator.h', |
| 85 'renderer/idle_user_detector.cc', | 88 'renderer/idle_user_detector.cc', |
| 86 'renderer/idle_user_detector.h', | 89 'renderer/idle_user_detector.h', |
| 87 'renderer/input_tag_speech_dispatcher.cc', | 90 'renderer/input_tag_speech_dispatcher.cc', |
| 88 'renderer/input_tag_speech_dispatcher.h', | 91 'renderer/input_tag_speech_dispatcher.h', |
| 89 'renderer/java/java_bridge_channel.cc', | 92 'renderer/java/java_bridge_channel.cc', |
| 90 'renderer/java/java_bridge_channel.h', | 93 'renderer/java/java_bridge_channel.h', |
| 91 'renderer/java/java_bridge_dispatcher.cc', | 94 'renderer/java/java_bridge_dispatcher.cc', |
| 92 'renderer/java/java_bridge_dispatcher.h', | 95 'renderer/java/java_bridge_dispatcher.h', |
| 93 'renderer/load_progress_tracker.cc', | 96 'renderer/load_progress_tracker.cc', |
| 94 'renderer/load_progress_tracker.h', | 97 'renderer/load_progress_tracker.h', |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 }], | 339 }], |
| 337 ], | 340 ], |
| 338 'target_conditions': [ | 341 'target_conditions': [ |
| 339 ['OS=="android"', { | 342 ['OS=="android"', { |
| 340 'sources/': [ | 343 'sources/': [ |
| 341 ['include', '^renderer/render_view_linux\\.cc$'], | 344 ['include', '^renderer/render_view_linux\\.cc$'], |
| 342 ], | 345 ], |
| 343 }], | 346 }], |
| 344 ], | 347 ], |
| 345 } | 348 } |
| OLD | NEW |