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

Side by Side Diff: android_webview/lib/android_webview.gyp

Issue 10890024: Implement DocuementHasImages (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 3 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 (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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'libwebview', 10 'target_name': 'libwebview',
(...skipping 15 matching lines...) Expand all
26 'aw_browser_dependency_factory_impl.h', 26 'aw_browser_dependency_factory_impl.h',
27 'aw_content_browser_client.cc', 27 'aw_content_browser_client.cc',
28 'aw_content_browser_client.h', 28 'aw_content_browser_client.h',
29 'main/webview_entry_point.cc', 29 'main/webview_entry_point.cc',
30 'main/webview_main_delegate.cc', 30 'main/webview_main_delegate.cc',
31 'main/webview_main_delegate.h', 31 'main/webview_main_delegate.h',
32 'main/webview_stubs.cc', 32 'main/webview_stubs.cc',
33 ], 33 ],
34 'includes': [ 34 'includes': [
35 '../aw_browser.gypi', 35 '../aw_browser.gypi',
36 '../aw_common.gypi',
37 '../aw_renderer.gypi',
36 ], 38 ],
37 }, 39 },
38 { 40 {
39 'target_name': 'android_webview', 41 'target_name': 'android_webview',
40 'type' : 'none', 42 'type' : 'none',
41 'dependencies': [ 43 'dependencies': [
42 'libwebview', 44 'libwebview',
43 ], 45 ],
44 'variables': { 46 'variables': {
45 'install_binary_script': '../build/install_binary', 47 'install_binary_script': '../build/install_binary',
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 '-DANDROID_SDK_VERSION=<(android_sdk_version)', 295 '-DANDROID_SDK_VERSION=<(android_sdk_version)',
294 '-DANDROID_TOOLCHAIN=<(android_toolchain)', 296 '-DANDROID_TOOLCHAIN=<(android_toolchain)',
295 '-buildfile', 297 '-buildfile',
296 '<(DEPTH)/android_webview/javatests/android_webview_test_apk.xml', 298 '<(DEPTH)/android_webview/javatests/android_webview_test_apk.xml',
297 ] 299 ]
298 } 300 }
299 ], 301 ],
300 }, 302 },
301 ], 303 ],
302 } 304 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698