| OLD | NEW |
| 1 # Copyright 2009 The Chromium Authors. All rights reserved. | 1 # Copyright 2009 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 'includes': [ | 8 'includes': [ |
| 9 'android_webview_tests.gypi', | 9 'android_webview_tests.gypi', |
| 10 ], | 10 ], |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 '-Wl,--no-fatal-warnings' | 21 '-Wl,--no-fatal-warnings' |
| 22 ], | 22 ], |
| 23 'sources': [ | 23 'sources': [ |
| 24 'lib/main/webview_entry_point.cc', | 24 'lib/main/webview_entry_point.cc', |
| 25 ], | 25 ], |
| 26 }, | 26 }, |
| 27 { | 27 { |
| 28 'target_name': 'android_webview_pak', | 28 'target_name': 'android_webview_pak', |
| 29 'type': 'none', | 29 'type': 'none', |
| 30 'dependencies': [ | 30 'dependencies': [ |
| 31 '<(DEPTH)/content/browser/devtools/devtools_resources.gyp:devtools_resou
rces', | |
| 32 '<(DEPTH)/content/content_resources.gyp:content_resources', | 31 '<(DEPTH)/content/content_resources.gyp:content_resources', |
| 33 '<(DEPTH)/net/net.gyp:net_resources', | 32 '<(DEPTH)/net/net.gyp:net_resources', |
| 34 '<(DEPTH)/ui/ui.gyp:ui_resources', | 33 '<(DEPTH)/ui/ui.gyp:ui_resources', |
| 35 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_resources', | 34 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_resources', |
| 36 ], | 35 ], |
| 37 'variables': { | 36 'variables': { |
| 38 'repack_path': '<(DEPTH)/tools/grit/grit/format/repack.py', | 37 'repack_path': '<(DEPTH)/tools/grit/grit/format/repack.py', |
| 39 }, | 38 }, |
| 40 'actions': [ | 39 'actions': [ |
| 41 { | 40 { |
| 42 'action_name': 'repack_android_webview_pack', | 41 'action_name': 'repack_android_webview_pack', |
| 43 'variables': { | 42 'variables': { |
| 44 'pak_inputs': [ | 43 'pak_inputs': [ |
| 45 '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak', | 44 '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak', |
| 46 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.pak', | 45 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.pak', |
| 47 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources_100_perce
nt.pak', | 46 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources_100_perce
nt.pak', |
| 48 '<(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak', | |
| 49 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_chromium_resources.pak', | 47 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_chromium_resources.pak', |
| 50 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_resources_100_percent.pa
k', | 48 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_resources_100_percent.pa
k', |
| 51 ], | 49 ], |
| 52 }, | 50 }, |
| 53 'inputs': [ | 51 'inputs': [ |
| 54 '<(repack_path)', | 52 '<(repack_path)', |
| 55 '<@(pak_inputs)', | 53 '<@(pak_inputs)', |
| 56 ], | 54 ], |
| 57 'outputs': [ | 55 'outputs': [ |
| 58 '<(PRODUCT_DIR)/android_webview_apk/assets/webviewchromium.pak', | 56 '<(PRODUCT_DIR)/android_webview_apk/assets/webviewchromium.pak', |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 '../content/content.gyp:content_java', | 183 '../content/content.gyp:content_java', |
| 186 '../ui/ui.gyp:ui_java', | 184 '../ui/ui.gyp:ui_java', |
| 187 ], | 185 ], |
| 188 'variables': { | 186 'variables': { |
| 189 'java_in_dir': '../android_webview/java', | 187 'java_in_dir': '../android_webview/java', |
| 190 }, | 188 }, |
| 191 'includes': [ '../build/java.gypi' ], | 189 'includes': [ '../build/java.gypi' ], |
| 192 }, | 190 }, |
| 193 ], | 191 ], |
| 194 } | 192 } |
| OLD | NEW |