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

Unified Diff: native_client_sdk/src/examples/Makefile_gyp

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « native_client_sdk/src/examples/Makefile ('k') | native_client_sdk/src/examples/common.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: native_client_sdk/src/examples/Makefile_gyp
diff --git a/native_client_sdk/src/examples/Makefile_gyp b/native_client_sdk/src/examples/Makefile_gyp
deleted file mode 100644
index 84b0cf4b632021b0f4117e0c5ce27f7e6baf5f40..0000000000000000000000000000000000000000
--- a/native_client_sdk/src/examples/Makefile_gyp
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright (c) 2012 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-#
-# GNU Make based build file.  For details on GNU Make see:
-#   http://www.gnu.org/software/make/manual/make.html
-#
-
-__PROJECT_LIST__
-
-# Define the default target
-all:
-
-CONFIG=debug
-
-#
-# Target Macro
-#
-# Macro defines a phony target for each example, and adds it to a list of
-# targets.
-#
-define TARGET
-TARGET_LIST+=$(1)_TARGET
-.PHONY: $(1)_TARGET
-$(1)_TARGET:
- +$(MAKE) BUILDTYPE=glibc-$(CONFIG) -C $(1)
- +$(MAKE) BUILDTYPE=newlib-$(CONFIG) -C $(1)
- +$(MAKE) BUILDTYPE=host-$(CONFIG) -C $(1)
-
-CLEAN_LIST+=$(1)_CLEAN
-.PHONY: $(1)_CLEAN
-$(1)_CLEAN:
- +$(MAKE) -C $(1) clean
-endef
-
-
-# Define the various targets via the Macro
-$(foreach proj,$(PROJECTS),$(eval $(call TARGET,$(proj))))
-
-__DEPENDENCIES__
-
-all: $(TARGET_LIST)
- echo "Done building targets."
-
-clean: $(CLEAN_LIST)
- echo "Done cleaning targets."
-
-RUN: all
- echo "Staring up python webserver."
- python httpd.py
-
« no previous file with comments | « native_client_sdk/src/examples/Makefile ('k') | native_client_sdk/src/examples/common.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698