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

Unified Diff: mojo/public/gles2/BUILD.gn

Issue 782693004: Update mojo sdk to rev f6c8ec07c01deebc13178d516225fd12695c3dc2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: hack mojo_system_impl gypi for android :| Created 6 years 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
Index: mojo/public/gles2/BUILD.gn
diff --git a/mojo/public/gles2/BUILD.gn b/mojo/public/gles2/BUILD.gn
deleted file mode 100644
index 79e7bdec9df1c4918b2845130c7208504e292498..0000000000000000000000000000000000000000
--- a/mojo/public/gles2/BUILD.gn
+++ /dev/null
@@ -1,45 +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.
-
-# In an is_component_build build, everything can link against //mojo/gles2
-# because it is built as a shared library. However, in a static build,
-# //mojo/gles2 is linked into an executable (e.g., mojo_shell), and must be
-# injected into other shared libraries (i.e., Mojo Apps) that need the mojo
-# gles2 API.
-#
-# For component targets, add //mojo/public/gles2:for_component to your deps
-# section.
-#
-# For shared_library targets (e.g., a Mojo App), add
-# //mojo/public/gles2:for_shared_library to your deps
-
-group("for_shared_library") {
- public_configs = [ "//third_party/khronos:khronos_headers" ]
- public_deps = [
- "//mojo/public/c/gles2",
- ]
-
- if (is_component_build) {
- deps = [
- "//mojo/gles2",
- ]
- } else {
- deps = [
- "//mojo/public/platform/native:gles2_thunks",
- ]
- }
-}
-
-group("for_component") {
- public_configs = [ "//third_party/khronos:khronos_headers" ]
- public_deps = [
- "//mojo/public/c/gles2",
- ]
-
- if (is_component_build) {
- deps = [
- "//mojo/gles2",
- ]
- }
-}

Powered by Google App Engine
This is Rietveld 408576698