blob: f2dd4e770182b00b83d51a0c66232b6ae25ac5e3 [file] [log] [blame]
Stephen Hines483f47c2014-05-13 17:28:57 -07001#
2# Copyright (C) 2014 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17ifeq "REL" "$(PLATFORM_VERSION_CODENAME)"
18 RS_VERSION := $(PLATFORM_SDK_VERSION)
19else
20 # Increment by 1 whenever this is not a final release build, since we want to
21 # be able to see the RS version number change during development.
22 # See build/core/version_defaults.mk for more information about this.
23 RS_VERSION := "(1 + $(PLATFORM_SDK_VERSION))"
24endif
25RS_VERSION_DEFINE := -DRS_VERSION=$(RS_VERSION)
26
27# Use RS_VERSION_DEFINE as part of your LOCAL_CFLAGS to have the proper value.
28# LOCAL_CFLAGS += $(RS_VERSION_DEFINE)
29