Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: content/content_child.gypi

Issue 172933004: [Android] Port Scroller.java to C++ and use for fling animations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../components/tracing.gyp:tracing', 8 '../components/tracing.gyp:tracing',
9 '../skia/skia.gyp:skia', 9 '../skia/skia.gyp:skia',
10 '../ui/gfx/gfx.gyp:gfx', 10 '../ui/gfx/gfx.gyp:gfx',
11 '../ui/gfx/gfx.gyp:gfx_geometry', 11 '../ui/gfx/gfx.gyp:gfx_geometry',
12 '../ui/ui.gyp:ui', 12 '../ui/ui.gyp:ui',
13 '../url/url.gyp:url_lib', 13 '../url/url.gyp:url_lib',
14 ], 14 ],
15 'include_dirs': [ 15 'include_dirs': [
16 '..', 16 '..',
17 ], 17 ],
18 'export_dependent_settings': [ 18 'export_dependent_settings': [
19 '../base/base.gyp:base', 19 '../base/base.gyp:base',
20 ], 20 ],
21 'sources': [ 21 'sources': [
22 'child/android/child_jni_registrar.cc',
23 'child/android/child_jni_registrar.h',
24 'child/appcache/appcache_backend_proxy.cc', 22 'child/appcache/appcache_backend_proxy.cc',
25 'child/appcache/appcache_backend_proxy.h', 23 'child/appcache/appcache_backend_proxy.h',
26 'child/appcache/appcache_dispatcher.cc', 24 'child/appcache/appcache_dispatcher.cc',
27 'child/appcache/appcache_dispatcher.h', 25 'child/appcache/appcache_dispatcher.h',
28 'child/appcache/appcache_frontend_impl.cc', 26 'child/appcache/appcache_frontend_impl.cc',
29 'child/appcache/appcache_frontend_impl.h', 27 'child/appcache/appcache_frontend_impl.h',
30 'child/appcache/web_application_cache_host_impl.cc', 28 'child/appcache/web_application_cache_host_impl.cc',
31 'child/appcache/web_application_cache_host_impl.h', 29 'child/appcache/web_application_cache_host_impl.h',
32 'child/blink_glue.cc', 30 'child/blink_glue.cc',
33 'child/blink_glue.h', 31 'child/blink_glue.h',
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 'child/npapi/webplugin_delegate_impl_mac.mm', 222 'child/npapi/webplugin_delegate_impl_mac.mm',
225 ], 223 ],
226 }], 224 }],
227 ['OS=="win"', { 225 ['OS=="win"', {
228 'sources!': [ 226 'sources!': [
229 'child/npapi/webplugin_delegate_impl_aura.cc', 227 'child/npapi/webplugin_delegate_impl_aura.cc',
230 ], 228 ],
231 }], 229 }],
232 ], 230 ],
233 } 231 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698