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

Unified Diff: android_webview/webview_pak.mk

Issue 1033263002: Delete Android build system makefiles. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « android_webview/tools/gyp_webview ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/webview_pak.mk
diff --git a/android_webview/webview_pak.mk b/android_webview/webview_pak.mk
deleted file mode 100644
index 50f5dcfc5cd95647c5dbb7ae6c2deb5042fc342d..0000000000000000000000000000000000000000
--- a/android_webview/webview_pak.mk
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright (c) 2012 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-# This makefile fragment describes how to install a Chromium pak into the
-# Android framework for use by WebView.
-
-my_local_module := $(LOCAL_MODULE)
-my_local_module_stem := $(LOCAL_MODULE_STEM)
-my_local_built_module_stem := $(LOCAL_BUILT_MODULE_STEM)
-
-# This module is used to copy the .pak files to /system/webview/paks in the
-# system image.
-LOCAL_MODULE_CLASS := GYP
-LOCAL_MODULE_SUFFIX := .pak
-LOCAL_MODULE_PATH := $(TARGET_OUT_JAVA_LIBRARIES)/webview/paks
-
-include $(BUILD_SYSTEM)/base_rules.mk
-
-built_by_gyp := $(call intermediates-dir-for,GYP,shared)/$(LOCAL_BUILT_MODULE_STEM)
-
-$(eval $(call copy-one-file,$(built_by_gyp),$(LOCAL_BUILT_MODULE)))
-
-include $(CLEAR_VARS)
-
-# This module is used to copy the .pak files to an intermediates folder so that
-# they can be picked up by AAPT and included in an .apk.
-LOCAL_MODULE := res-$(my_local_module)
-LOCAL_MODULE_STEM := $(my_local_module_stem)
-LOCAL_BUILT_MODULE_STEM := $(my_local_built_module_stem)
-LOCAL_MODULE_CLASS := GYP
-LOCAL_MODULE_SUFFIX := .pak
-LOCAL_MODULE_PATH := $(call intermediates-dir-for,APPS,webviewchromium-paks)
-
-include $(BUILD_SYSTEM)/base_rules.mk
-
-built_by_gyp := $(call intermediates-dir-for,GYP,shared)/$(LOCAL_BUILT_MODULE_STEM)
-
-$(eval $(call copy-one-file,$(built_by_gyp),$(LOCAL_BUILT_MODULE)))
« no previous file with comments | « android_webview/tools/gyp_webview ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698