Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(203)

Side by Side Diff: native_client_sdk/src/resources/Makefile.example.template

Issue 23919004: [NaCl SDK] Create a resources/ directory and move files to it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: move httpd.cmd too Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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}}
OLDNEW
« no previous file with comments | « native_client_sdk/src/libraries/xray/library.dsc ('k') | native_client_sdk/src/resources/Makefile.index.template » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698