[Password manager tests] Refactoring of util which runs tests.
[chromium-blink-merge.git] / native_client_sdk / src / resources / Makefile.example.template
blobc511964836db8f2c91a1a247f8e27021d7fd155c
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
3 # found in the LICENSE file.
5 # GNU Makefile based on shared rules provided by the Native Client SDK.
6 # See README.Makefiles for more details.
7 [[]]
8 [[def ExpandDict(key, value_in, pre_list=[], post_list=[]):]]
9 [[  value = value_in or [] ]]
10 [[  pre = pre_list or [] ]]
11 [[  post = post_list or [] ]]
12 [[  if type(value) is not dict:]]
13 [[    out = pre]]
14 [[    out.extend(value)]]
15 [[    out.extend(post)]]
16 [[    if out:]]
17 {{key}} = {{' '.join(out)}}
18 [[    ]]
19 [[    return]]
20 [[  ]]
21 [[  for subkey in value:]]
22 [[    out = pre]]
23 [[    out.extend(value[subkey])]]
24 [[    out.extend(post)]]
25 {{key}}_{{subkey}} = {{' '.join(out)}}
26 [[  ]]
27 {{key}} = $({{key}}_$(TOOLCHAIN))
28 [[]]
30 VALID_TOOLCHAINS := {{' '.join(tools)}}
31 {{pre}}
32 NACL_SDK_ROOT ?= $(abspath $(CURDIR)/{{rel_sdk}})
33 [[if 'INCLUDES' in targets[0]:]]
34 EXTRA_INC_PATHS={{' '.join(targets[0]['INCLUDES'])}}
35 [[]]
37 TARGET = {{targets[0]['NAME']}}
39 [[if multi_platform:]]
40 # Build with platform-specific subdirectories, to reduce the download size of
41 # the app.
42 MULTI_PLATFORM = 1
43 [[]]
45 include $(NACL_SDK_ROOT)/tools/common.mk
47 [[if desc.get('SOCKET_PERMISSIONS'):]]
48 CHROME_ARGS += --allow-nacl-socket-api=localhost
49 [[]]
51 [[ExpandDict('DEPS', targets[0].get('DEPS', []))]]
52 [[ExpandDict('LIBS', targets[0].get('LIBS', []))]]
54 [[for target in targets:]]
55 [[  source_list = (s for s in sorted(target['SOURCES']) if not s.endswith('.h'))]]
56 [[  source_list = ' \\\n  '.join(source_list)]]
57 [[  sources = target['NAME'] + '_SOURCES']]
58 [[  cflags = target['NAME'] + '_CFLAGS']]
59 [[  flags = target.get('CFLAGS', [])]]
60 [[  flags.extend(target.get('CXXFLAGS', []))]]
61 [[  if len(targets) == 1:]]
62 [[    sources = 'SOURCES']]
63 [[    cflags = 'CFLAGS']]
64 [[  ]]
65 [[  ExpandDict(cflags, flags)]]
66 [[  for define in target.get('DEFINES', []):]]
67 {{cflags}} += -D{{define}}
68 [[  ]]
69 [[  if 'CFLAGS_GCC' in target:]]
70 ifneq ($(TOOLCHAIN),pnacl)
71 {{cflags}} += {{' '.join(target['CFLAGS_GCC'])}}
72 endif
73 [[  ]]
74 {{sources}} = {{source_list}}
76 # Build rules generated by macros from common.mk:
78 [[if targets[0].get('DEPS'):]]
79 $(foreach dep,$(DEPS),$(eval $(call DEPEND_RULE,$(dep))))
80 [[if len(targets) > 1:]]
81 [[  for target in targets:]]
82 [[    name = target['NAME'] ]]
83 $(foreach src,$({{name}}_SOURCES),$(eval $(call COMPILE_RULE,$(src),$({{name}}_CFLAGS))))
84 [[else:]]
85 $(foreach src,$(SOURCES),$(eval $(call COMPILE_RULE,$(src),$(CFLAGS))))
86 [[]]
88 [[for target in targets:]]
89 [[  sources = target['NAME'] + '_SOURCES']]
90 [[  name = target['NAME'] ]]
91 [[  if len(targets) == 1:]]
92 [[    sources = 'SOURCES']]
93 [[    name = '$(TARGET)']]
94 [[  if target['TYPE'] == 'so':]]
95 $(eval $(call SO_RULE,{{name}},$({{sources}})))
96 [[  elif target['TYPE'] == 'so-standalone':]]
97 $(eval $(call SO_RULE,{{name}},$({{sources}}),,,1))
98 [[  else:]]
99 # The PNaCl workflow uses both an unstripped and finalized/stripped binary.
100 # On NaCl, only produce a stripped binary for Release configs (not Debug).
101 ifneq (,$(or $(findstring pnacl,$(TOOLCHAIN)),$(findstring Release,$(CONFIG))))
102 $(eval $(call LINK_RULE,{{name}}_unstripped,$({{sources}}),$(LIBS),$(DEPS)))
103 $(eval $(call STRIP_RULE,{{name}},{{name}}_unstripped))
104 else
105 $(eval $(call LINK_RULE,{{name}},$({{sources}}),$(LIBS),$(DEPS)))
106 endif
107 [[]]
109 $(eval $(call NMF_RULE,$(TARGET),)){{post}}