diff options
author | nyquist <nyquist@chromium.org> | 2015-09-09 22:10:35 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-09-10 05:11:12 +0000 |
commit | b5f050b561372e9bed7a6789258dafcc5daac535 (patch) | |
tree | b1b64e246ad4b1e470c1866ec71369946f784dea /blimp/BUILD.gn | |
parent | 19893ba50f655dcf5e45ce4a3cb12640d5ae7ced (diff) | |
download | chromium_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.gn | 10 |
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", + ] +} |