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

Unified Diff: util/util.gyp

Issue 752243002: Add the child_port Mach subsystem (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 6 years, 1 month 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
« util/mach/child_port.defs ('K') | « util/mach/child_port_types.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/util.gyp
diff --git a/util/util.gyp b/util/util.gyp
index effb529fb133b692bc68940b39d3240743e6d105..b579aed7f9c97585d35e4ac72d66ab1055c9beb8 100644
--- a/util/util.gyp
+++ b/util/util.gyp
@@ -40,6 +40,7 @@
'mac/mac_util.h',
'mac/service_management.cc',
'mac/service_management.h',
+ 'mach/child_port_types.h',
'mach/exc_client_variants.cc',
'mach/exc_client_variants.h',
'mach/exc_server_variants.cc',
@@ -106,6 +107,26 @@
['OS=="mac"', {
'actions': [
{
+ 'action_name': 'mig child_port.defs',
+ 'variables': {
+ 'child_port_defs_file': 'mach/child_port.defs',
+ },
+ 'inputs': [
+ 'mach/mig.py',
+ '<(child_port_defs_file)',
+ ],
+ 'outputs': [
+ '<(INTERMEDIATE_DIR)/util/mach/child_portUser.c',
+ '<(INTERMEDIATE_DIR)/util/mach/child_portServer.c',
+ '<(INTERMEDIATE_DIR)/util/mach/child_port.h',
+ '<(INTERMEDIATE_DIR)/util/mach/child_portServer.h',
+ ],
+ 'action': [
+ 'python', '<@(_inputs)', '<@(_outputs)'
+ ],
+ 'process_outputs_as_sources': 1,
+ },
+ {
'action_name': 'mig exc.defs',
'inputs': [
'mach/mig.py',
« util/mach/child_port.defs ('K') | « util/mach/child_port_types.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698