summaryrefslogtreecommitdiffstats
path: root/blimp/BUILD.gn
diff options
context:
space:
mode:
authornyquist <nyquist@chromium.org>2015-09-09 22:10:35 -0700
committerCommit bot <commit-bot@chromium.org>2015-09-10 05:11:12 +0000
commitb5f050b561372e9bed7a6789258dafcc5daac535 (patch)
treeb1b64e246ad4b1e470c1866ec71369946f784dea /blimp/BUILD.gn
parent19893ba50f655dcf5e45ce4a3cb12640d5ae7ced (diff)
downloadchromium_src-b5f050b561372e9bed7a6789258dafcc5daac535.zip
chromium_src-b5f050b561372e9bed7a6789258dafcc5daac535.tar.gz
chromium_src-b5f050b561372e9bed7a6789258dafcc5daac535.tar.bz2
Reland "Make blimp/common:blimp_common compile for Linux."
This reverts commit 7d445bc580b1de93263235d16a28731cc54b8916. In addition to the compilation fix, it fixes the following GN issues: - Moves blimp_apk from 'both_gn_and_gyp' group to 'gn_only'. - Adds a top-level blimp GN group. - Ensures //blimp is built on linux. The previous CL landed after: https://codereview.chromium.org/1314353005 which made it break the build. Original review: https://codereview.chromium.org/1329323002/ (also same as patch set 1) Revert review: https://codereview.chromium.org/1331773002 BUG=None TBR=dpranke@chromium.org,kmarshall@chromium.org Review URL: https://codereview.chromium.org/1330223002 Cr-Commit-Position: refs/heads/master@{#348098}
Diffstat (limited to 'blimp/BUILD.gn')
-rw-r--r--blimp/BUILD.gn10
1 files changed, 10 insertions, 0 deletions
diff --git a/blimp/BUILD.gn b/blimp/BUILD.gn
new file mode 100644
index 0000000..04b7a5b
--- /dev/null
+++ b/blimp/BUILD.gn
@@ -0,0 +1,10 @@
+# Copyright 2015 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.
+
+group("blimp") {
+ deps = [
+ "//blimp/client:blimp_client",
+ "//blimp/common:blimp_common",
+ ]
+}