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

Unified Diff: mojo/mojo_nacl.gyp

Issue 1279133006: Removed unused mojo_nacl code and GYP targets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: - -l Created 5 years, 4 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 | « build/gn_migration.gypi ('k') | mojo/mojo_nacl_untrusted.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/mojo_nacl.gyp
diff --git a/mojo/mojo_nacl.gyp b/mojo/mojo_nacl.gyp
deleted file mode 100644
index 81595fc1dfe5ff74eec5b5d55b9915261291af30..0000000000000000000000000000000000000000
--- a/mojo/mojo_nacl.gyp
+++ /dev/null
@@ -1,113 +0,0 @@
-# Copyright 2014 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.
-
-{
- 'conditions': [
- ['disable_nacl==0 and disable_nacl_untrusted==0', {
- 'includes': [
- '../mojo/mojo_nacl.gypi',
- ],
- 'targets': [
- {
- 'target_name': 'monacl_codegen',
- 'type': 'none',
- 'actions': [
- {
- 'action_name': 'generate_nacl_bindings',
- 'inputs': [
- 'nacl/generator/generate_nacl_bindings.py',
- 'nacl/generator/interface.py',
- 'nacl/generator/interface_dsl.py',
- 'nacl/generator/libmojo.cc.tmpl',
- 'nacl/generator/mojo_irt.c.tmpl',
- 'nacl/generator/mojo_irt.h.tmpl',
- 'nacl/generator/mojo_syscall.cc.tmpl',
- ],
- 'outputs': [
- '<(monacl_codegen_dir)/libmojo.cc',
- '<(monacl_codegen_dir)/mojo_irt.c',
- '<(monacl_codegen_dir)/mojo_irt.h',
- '<(monacl_codegen_dir)/mojo_syscall.cc',
- ],
- 'action': [
- 'python',
- 'nacl/generator/generate_nacl_bindings.py',
- '-d', '<(monacl_codegen_dir)',
- ],
- },
- ],
- 'direct_dependent_settings': {
- 'include_dirs': [ '../third_party/mojo/src/' ],
- },
- },
- {
- 'target_name': 'monacl_syscall',
- 'type': 'static_library',
- 'include_dirs': [
- '..',
- '../third_party/mojo/src/',
- ],
- 'sources': [
- '<(monacl_codegen_dir)/mojo_syscall.cc',
- ],
- 'dependencies': [
- '../third_party/mojo/mojo_public.gyp:mojo_system_placeholder',
- ],
- },
- {
- 'target_name': 'monacl_sel',
- 'type': 'static_library',
- 'include_dirs': [
- '..',
- '../third_party/mojo/src/',
- ],
- 'sources': [
- 'nacl/monacl_sel_main.cc',
- ],
- 'dependencies': [
- '<(DEPTH)/native_client/src/trusted/service_runtime/service_runtime.gyp:sel',
- 'monacl_codegen',
- 'monacl_syscall',
- ],
- },
- {
- 'target_name': 'monacl_shell',
- 'type': 'executable',
- 'dependencies': [
- '../base/base.gyp:base',
- '../third_party/mojo/mojo_edk.gyp:mojo_system_impl',
- 'monacl_sel',
- ],
- 'sources': [
- 'nacl/monacl_shell.cc',
- ],
- },
- ],
- 'conditions': [
- ['OS=="win" and target_arch=="ia32"', {
- 'targets': [
- {
- 'target_name': 'monacl_syscall_win64',
- 'type': 'static_library',
- 'include_dirs': [
- '..',
- ],
- 'sources': [
- '<(monacl_codegen_dir)/mojo_syscall.cc',
- ],
- 'dependencies': [
- '../third_party/mojo/mojo_public.gyp:mojo_system_placeholder',
- ],
- 'configurations': {
- 'Common_Base': {
- 'msvs_target_platform': 'x64',
- }
- },
- },
- ],
- }],
- ],
- }],
- ],
-}
« no previous file with comments | « build/gn_migration.gypi ('k') | mojo/mojo_nacl_untrusted.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698