OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # GNU Makefile based on shared rules provided by the Native Client SDK. | 5 # GNU Makefile based on shared rules provided by the Native Client SDK. |
6 # See README.Makefiles for more details. | 6 # See README.Makefiles for more details. |
7 [[]] | 7 [[]] |
8 [[def ExpandDict(key, value_in, pre_list=[], post_list=[]):]] | 8 [[def ExpandDict(key, value_in, pre_list=[], post_list=[]):]] |
9 [[ value = value_in or [] ]] | 9 [[ value = value_in or [] ]] |
10 [[ pre = pre_list or [] ]] | 10 [[ pre = pre_list or [] ]] |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 [[ else:]] | 80 [[ else:]] |
81 ifeq ($(CONFIG),Release) | 81 ifeq ($(CONFIG),Release) |
82 $(eval $(call LINK_RULE,{{name}}_unstripped,$({{sources}}),$(LIBS),$(DEPS))) | 82 $(eval $(call LINK_RULE,{{name}}_unstripped,$({{sources}}),$(LIBS),$(DEPS))) |
83 $(eval $(call STRIP_RULE,{{name}},{{name}}_unstripped)) | 83 $(eval $(call STRIP_RULE,{{name}},{{name}}_unstripped)) |
84 else | 84 else |
85 $(eval $(call LINK_RULE,{{name}},$({{sources}}),$(LIBS),$(DEPS))) | 85 $(eval $(call LINK_RULE,{{name}},$({{sources}}),$(LIBS),$(DEPS))) |
86 endif | 86 endif |
87 [[]] | 87 [[]] |
88 | 88 |
89 $(eval $(call NMF_RULE,$(TARGET),)){{post}} | 89 $(eval $(call NMF_RULE,$(TARGET),)){{post}} |
OLD | NEW |