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

Unified Diff: components/devtools_bridge.gyp

Issue 517233002: DevTools socket tunnel. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@glue
Patch Set: Created 6 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 | « components/OWNERS ('k') | components/devtools_bridge/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/devtools_bridge.gyp
diff --git a/components/devtools_bridge.gyp b/components/devtools_bridge.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..9df952772650f0eeae18639eb2976ab878dfcb81
--- /dev/null
+++ b/components/devtools_bridge.gyp
@@ -0,0 +1,42 @@
+# 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.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'devtools_bridge_javalib',
+ 'type': 'none',
+ 'variables': {
+ 'java_in_dir': 'devtools_bridge/android/java',
+ },
+ 'includes': [ '../build/java.gypi' ],
+ },
+ {
+ 'target_name': 'devtools_bridge_testutils',
+ 'type': 'none',
+ 'variables': {
+ 'java_in_dir': 'devtools_bridge/test/android/javatests',
+ },
+ 'includes': [ '../build/java.gypi' ],
+ 'dependencies': [
+ 'devtools_bridge_javalib',
+ ],
+ },
+ {
+ 'target_name': 'devtools_bridge_tests_apk',
+ 'type': 'none',
+ 'dependencies': [
+ 'devtools_bridge_javalib',
+ 'devtools_bridge_testutils',
+ ],
+ 'variables': {
+ 'apk_name': 'DevToolsBridgeTest',
+ 'test_suite_name': 'devtools_bridge_tests',
+ 'java_in_dir': 'devtools_bridge/android/javatests',
+ 'is_test_apk': 1,
+ },
+ 'includes': [ '../build/java_apk.gypi' ],
+ },
+ ],
+}
« no previous file with comments | « components/OWNERS ('k') | components/devtools_bridge/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698