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

Side by Side Diff: chrome/app/BUILD.gn

Issue 2143253002: Convert test_support source sets to static libs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Android Created 4 years, 5 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 | « base/test/BUILD.gn ('k') | chrome/browser/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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//mojo/public/mojo_application_manifest.gni") 6 import("//mojo/public/mojo_application_manifest.gni")
7 import("//tools/grit/grit_rule.gni") 7 import("//tools/grit/grit_rule.gni")
8 8
9 if (is_android) { 9 if (is_android) {
10 import("//build/config/android/rules.gni") 10 import("//build/config/android/rules.gni")
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 use_qualified_include = true 305 use_qualified_include = true
306 outputs = [ 306 outputs = [
307 "grit/settings_google_chrome_strings.h", 307 "grit/settings_google_chrome_strings.h",
308 308
309 # These strings are not being treated as strings because they are 309 # These strings are not being treated as strings because they are
310 # not translated (English only), this should change in late 2015. 310 # not translated (English only), this should change in late 2015.
311 "settings_google_chrome_strings.pak", 311 "settings_google_chrome_strings.pak",
312 ] 312 ]
313 } 313 }
314 314
315 source_set("test_support") { 315 static_library("test_support") {
316 testonly = true 316 testonly = true
317 visibility = [ "//chrome/test:test_support" ] 317 visibility = [ "//chrome/test:test_support" ]
318 318
319 sources = [ 319 sources = [
320 "chrome_main_delegate.cc", 320 "chrome_main_delegate.cc",
321 "chrome_main_delegate.h", 321 "chrome_main_delegate.h",
322 ] 322 ]
323 323
324 deps = [ 324 deps = [
325 "//base", 325 "//base",
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 base_deps = [ "//content/public/app:renderer_manifest" ] 387 base_deps = [ "//content/public/app:renderer_manifest" ]
388 } 388 }
389 389
390 group("mojo_manifests") { 390 group("mojo_manifests") {
391 data_deps = [ 391 data_deps = [
392 ":chrome_manifest", 392 ":chrome_manifest",
393 ":chrome_renderer_manifest", 393 ":chrome_renderer_manifest",
394 ] 394 ]
395 } 395 }
396 } 396 }
OLDNEW
« no previous file with comments | « base/test/BUILD.gn ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698