aboutsummaryrefslogtreecommitdiff
path: root/mojo/public/c/system/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'mojo/public/c/system/BUILD.gn')
-rw-r--r--mojo/public/c/system/BUILD.gn37
1 files changed, 0 insertions, 37 deletions
diff --git a/mojo/public/c/system/BUILD.gn b/mojo/public/c/system/BUILD.gn
deleted file mode 100644
index 08185c7..0000000
--- a/mojo/public/c/system/BUILD.gn
+++ /dev/null
@@ -1,37 +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.
-
-component("system") {
- output_name = "mojo_public_system"
-
- sources = [
- "buffer.h",
- "core.h",
- "data_pipe.h",
- "functions.h",
- "macros.h",
- "message_pipe.h",
- "platform_handle.h",
- "system_export.h",
- "thunks.cc",
- "thunks.h",
- "types.h",
- "watcher.h",
- ]
-
- defines = [ "MOJO_SYSTEM_IMPLEMENTATION" ]
-}
-
-# This should ONLY be depended upon directly by shared_library targets which
-# need to export the MojoSetSystemThunks symbol, like targets generated by the
-# mojo_native_application template in //services/service_manager/public/cpp/service.gni.
-source_set("set_thunks_for_app") {
- sources = [
- "set_thunks_for_app.cc",
- ]
-
- public_deps = [
- ":system",
- ]
-}