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

Side by Side Diff: blimp/BUILD.gn

Issue 2292723003: Move remaining Blimp feature code to core. (Closed)
Patch Set: Fix build break Created 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | blimp/client/BUILD.gn » ('j') | no next file with comments »
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 if (is_android) { 9 if (is_android) {
10 import("//build/config/android/config.gni") 10 import("//build/config/android/config.gni")
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 } 61 }
62 62
63 if (is_linux) { 63 if (is_linux) {
64 deps += [ ":blimp_browsertests" ] 64 deps += [ ":blimp_browsertests" ]
65 } 65 }
66 } 66 }
67 67
68 test("blimp_unittests") { 68 test("blimp_unittests") {
69 deps = [ 69 deps = [
70 "//blimp/client:app_unit_tests", 70 "//blimp/client:app_unit_tests",
71 "//blimp/client:feature_unit_tests",
72 "//blimp/client/core:unit_tests", 71 "//blimp/client/core:unit_tests",
73 "//blimp/common:unit_tests", 72 "//blimp/common:unit_tests",
74 "//blimp/net:unit_tests", 73 "//blimp/net:unit_tests",
75 "//blimp/test:run_all_unittests", 74 "//blimp/test:run_all_unittests",
76 ] 75 ]
77 76
78 if (is_linux) { 77 if (is_linux) {
79 deps += [ "//blimp/engine:unit_tests" ] 78 deps += [ "//blimp/engine:unit_tests" ]
80 } 79 }
81 80
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 "--output", 242 "--output",
244 rebase_path(_output_path, root_build_dir), 243 rebase_path(_output_path, root_build_dir),
245 "--target", 244 "--target",
246 rebase_path(_wrapped_script, root_build_dir), 245 rebase_path(_wrapped_script, root_build_dir),
247 "--output-directory", 246 "--output-directory",
248 rebase_path(root_out_dir, root_build_dir), 247 rebase_path(root_out_dir, root_build_dir),
249 "--flag-name=--output-linux-directory", 248 "--flag-name=--output-linux-directory",
250 ] 249 ]
251 } 250 }
252 } 251 }
OLDNEW
« no previous file with comments | « no previous file | blimp/client/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698