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

Side by Side Diff: blimp/BUILD.gn

Issue 1987393002: Include symupload in official Blimp engine builds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 unified diff | Download patch
« no previous file with comments | « no previous file | blimp/engine/BUILD.gn » ('j') | blimp/engine/BUILD.gn » ('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("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 8
9 # Convenience meta-target for all of Blimp's production & test code. 9 # Convenience meta-target for all of Blimp's production & test code.
10 group("blimp") { 10 group("blimp") {
(...skipping 15 matching lines...) Expand all
26 ] 26 ]
27 } 27 }
28 28
29 if (is_linux) { 29 if (is_linux) {
30 deps += [ 30 deps += [
31 "//blimp/engine", 31 "//blimp/engine",
32 "//blimp/engine:blimp_engine_bundle", 32 "//blimp/engine:blimp_engine_bundle",
33 ] 33 ]
34 34
35 if (is_official_build) { 35 if (is_official_build) {
36 deps += [ "//blimp/engine:blimp_symbols" ] 36 deps += [
37 "//blimp/engine:blimp_symbols",
38 "//blimp/engine:symupload",
39 ]
37 } 40 }
38 } 41 }
39 42
40 if (is_linux && !is_chromeos && use_x11) { 43 if (is_linux && !is_chromeos && use_x11) {
41 deps += [ "//blimp/client:blimp_shell" ] 44 deps += [ "//blimp/client:blimp_shell" ]
42 } 45 }
43 } 46 }
44 47
45 # Builds all Blimp test code (unit tests, APKs). 48 # Builds all Blimp test code (unit tests, APKs).
46 group("blimp_tests") { 49 group("blimp_tests") {
(...skipping 26 matching lines...) Expand all
73 } 76 }
74 } 77 }
75 78
76 if (is_linux) { 79 if (is_linux) {
77 test("blimp_browsertests") { 80 test("blimp_browsertests") {
78 deps = [ 81 deps = [
79 "//blimp/test:engine_browsertests", 82 "//blimp/test:engine_browsertests",
80 ] 83 ]
81 } 84 }
82 } 85 }
OLDNEW
« no previous file with comments | « no previous file | blimp/engine/BUILD.gn » ('j') | blimp/engine/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698