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

Side by Side Diff: blimp/BUILD.gn

Issue 1450423002: Add glue between the client and engine for Blimp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blimp_ipc2
Patch Set: Address comments! Created 5 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « no previous file | blimp/client/BUILD.gn » ('j') | blimp/client/android/blimp_view.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 # Metatarget for all of Blimp's feature code. 7 # Metatarget for all of Blimp's feature code.
8 group("blimp") { 8 group("blimp") {
9 deps = [ 9 deps = [
10 "//blimp/client:blimp_client", 10 "//blimp/client:blimp_client",
(...skipping 17 matching lines...) Expand all
28 ":blimp_unittests", 28 ":blimp_unittests",
29 ] 29 ]
30 30
31 if (is_android) { 31 if (is_android) {
32 deps += [ "//blimp/client:blimp_test_apk" ] 32 deps += [ "//blimp/client:blimp_test_apk" ]
33 } 33 }
34 } 34 }
35 35
36 test("blimp_unittests") { 36 test("blimp_unittests") {
37 deps = [ 37 deps = [
38 "//blimp/client:unit_tests",
39 "//blimp/engine:unit_tests",
38 "//blimp/net:unit_tests", 40 "//blimp/net:unit_tests",
39 ] 41 ]
40 } 42 }
41 43
42 # TODO(GYP): Delete this after we've converted everything to GN. 44 # TODO(GYP): Delete this after we've converted everything to GN.
43 # The _run targets exist only for compatibility w/ GYP. 45 # The _run targets exist only for compatibility w/ GYP.
44 group("blimp_unittests_run") { 46 group("blimp_unittests_run") {
45 testonly = true 47 testonly = true
46 deps = [ 48 deps = [
47 ":blimp_unittests", 49 ":blimp_unittests",
48 ] 50 ]
49 } 51 }
OLDNEW
« no previous file with comments | « no previous file | blimp/client/BUILD.gn » ('j') | blimp/client/android/blimp_view.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698