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 3 # found in the LICENSE file. 4 5 # This makefile fragment describes how to install a Chromium pak into the 6 # Android framework for use by WebView. 7 8 LOCAL_MODULE_CLASS := GYP 9 LOCAL_MODULE_SUFFIX := .pak 10 LOCAL_MODULE_PATH := $(TARGET_OUT_JAVA_LIBRARIES)/webview/paks 11 12 include $(BUILD_SYSTEM)/base_rules.mk 13 14 built_by_gyp := $(call intermediates-dir-for,GYP,shared)/$(LOCAL_BUILT_MODULE_STEM) 15 16 $(eval $(call copy-one-file,$(built_by_gyp),$(LOCAL_BUILT_MODULE))) 17