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

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

Issue 2023133003: Add Static Initializer for leak detector TLS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Include protobuf header in unittest; Browser publicly depends on leak_detector Created 4 years, 6 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 | chrome/app/DEPS » ('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 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 } 345 }
346 346
347 if (is_win) { 347 if (is_win) {
348 deps += [ 348 deps += [
349 "//chrome:chrome_initial", 349 "//chrome:chrome_initial",
350 "//sandbox/win:sandbox", 350 "//sandbox/win:sandbox",
351 ] 351 ]
352 } 352 }
353 353
354 if (is_chromeos) { 354 if (is_chromeos) {
355 deps += [ "//chrome/browser/chromeos" ] 355 deps += [
356 "//chrome/browser/chromeos",
357 "//components/metrics:leak_detector",
358 ]
356 } 359 }
357 360
358 if (enable_pdf) { 361 if (enable_pdf) {
359 deps += [ "//pdf" ] 362 deps += [ "//pdf" ]
360 } 363 }
361 364
362 if (enable_plugins && enable_nacl) { 365 if (enable_plugins && enable_nacl) {
363 deps += [ 366 deps += [
364 "//components/nacl/browser", 367 "//components/nacl/browser",
365 "//components/nacl/renderer/plugin:nacl_trusted_plugin", 368 "//components/nacl/renderer/plugin:nacl_trusted_plugin",
(...skipping 18 matching lines...) Expand all
384 base_deps = [ "//content/public/app:renderer_manifest" ] 387 base_deps = [ "//content/public/app:renderer_manifest" ]
385 } 388 }
386 389
387 group("mojo_manifests") { 390 group("mojo_manifests") {
388 data_deps = [ 391 data_deps = [
389 ":chrome_manifest", 392 ":chrome_manifest",
390 ":chrome_renderer_manifest", 393 ":chrome_renderer_manifest",
391 ] 394 ]
392 } 395 }
393 } 396 }
OLDNEW
« no previous file with comments | « no previous file | chrome/app/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698