aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Kiazyk <skiazyk@google.com>2017-03-14 13:26:15 -0700
committerColin Cross <ccross@android.com>2017-04-18 14:54:39 -0700
commitaff31ab7f22b591f538799ae73bc5c5d5b204a88 (patch)
tree4b6e0043acdca759fbf976a5795d668af3ed5885
parent6145293195ec8f38b0f87f8da028b5f5d85e7fdd (diff)
downloadeigen-aff31ab7f22b591f538799ae73bc5c5d5b204a88.tar.gz
Add header library target for eigen
Technically this should have already existed. I am making this a soong build library so it is univerally accessible. Bug: 36222421 Test: Built this and its depdencies. Change-Id: I5124a7ee45512c18fe4f8cd86e7fa48db89ff74a (cherry picked from commit 0462b8ffbe806de07b22c97fa777ea66c2dd7874)
-rw-r--r--Android.bp19
1 files changed, 19 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 000000000..5a00fb473
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,19 @@
+// Copyright (C) 2012 The Android Open Source Project
+//
+// 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.
+
+cc_library_headers {
+ export_include_dirs = [ "." ],
+ name: "libeigen",
+}
+