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: chrome/app/BUILD.gn

Issue 2487783002: Make Crashpad use the user data dir, rather than always default location (Closed)
Patch Set: install_static for swarming Created 4 years 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
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("//chrome/common/features.gni") 6 import("//chrome/common/features.gni")
7 import("//ppapi/features/features.gni") 7 import("//ppapi/features/features.gni")
8 import("//printing/features/features.gni") 8 import("//printing/features/features.gni")
9 import("//services/service_manager/public/service_manifest.gni") 9 import("//services/service_manager/public/service_manifest.gni")
10 import("//tools/grit/grit_rule.gni") 10 import("//tools/grit/grit_rule.gni")
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 325
326 if (is_mac) { 326 if (is_mac) {
327 sources += [ "chrome_main_mac.mm" ] 327 sources += [ "chrome_main_mac.mm" ]
328 328
329 deps += [ "//chrome:chrome_framework" ] 329 deps += [ "//chrome:chrome_framework" ]
330 } 330 }
331 331
332 if (is_win) { 332 if (is_win) {
333 deps += [ 333 deps += [
334 "//chrome:chrome_initial", 334 "//chrome:chrome_initial",
335 "//chrome/install_static:install_static_util",
335 "//sandbox/win:sandbox", 336 "//sandbox/win:sandbox",
336 ] 337 ]
337 } 338 }
338 339
339 if (is_chromeos) { 340 if (is_chromeos) {
340 deps += [ 341 deps += [
341 "//chrome/browser/chromeos", 342 "//chrome/browser/chromeos",
342 "//components/metrics/leak_detector:leak_detector", 343 "//components/metrics/leak_detector:leak_detector",
343 ] 344 ]
344 } 345 }
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 group("service_manifests") { 429 group("service_manifests") {
429 data_deps = [ 430 data_deps = [
430 ":chrome_content_browser_manifest", 431 ":chrome_content_browser_manifest",
431 ":chrome_content_gpu_manifest", 432 ":chrome_content_gpu_manifest",
432 ":chrome_content_plugin_manifest", 433 ":chrome_content_plugin_manifest",
433 ":chrome_content_renderer_manifest", 434 ":chrome_content_renderer_manifest",
434 ":chrome_content_utility_manifest", 435 ":chrome_content_utility_manifest",
435 ] 436 ]
436 } 437 }
437 } 438 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698