Hybrid soong/mk build using prebuilts

Change-Id: I96daa69af27bd19c8bfbe327a1318f51c738fc03
This commit is contained in:
Dan Willemsen
2015-07-08 18:13:11 -07:00
committed by Colin Cross
parent 979422c6c2
commit 218f65628e
8 changed files with 422 additions and 26 deletions

31
java/androidmk.go Normal file
View File

@@ -0,0 +1,31 @@
// Copyright 2015 Google Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package java
import (
"android/soong/common"
)
func (*JavaLibrary) AndroidMk() (ret common.AndroidMkData) {
ret.Class = "JAVA_LIBRARIES"
// TODO
return
}
func (*JavaPrebuilt) AndroidMk() (ret common.AndroidMkData) {
ret.Class = "JAVA_LIBRARIES"
// TODO
return
}