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

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

Issue 2464663002: chrome: move networking_private_crypto from common to browser (Closed)
Patch Set: chrome/test Created 4 years, 1 month 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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/util/process_version.gni") 6 import("//build/util/process_version.gni")
7 import("//chrome/common/features.gni") 7 import("//chrome/common/features.gni")
8 import("//chrome/process_version_rc_template.gni") # For branding_file_path. 8 import("//chrome/process_version_rc_template.gni") # For branding_file_path.
9 import("//mojo/public/tools/bindings/mojom.gni") 9 import("//mojo/public/tools/bindings/mojom.gni")
10 import("//tools/grit/grit_rule.gni") 10 import("//tools/grit/grit_rule.gni")
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 345
346 if (is_win || is_mac) { 346 if (is_win || is_mac) {
347 sources += [ 347 sources += [
348 "media_galleries/itunes_library.cc", 348 "media_galleries/itunes_library.cc",
349 "media_galleries/itunes_library.h", 349 "media_galleries/itunes_library.h",
350 "media_galleries/picasa_types.cc", 350 "media_galleries/picasa_types.cc",
351 "media_galleries/picasa_types.h", 351 "media_galleries/picasa_types.h",
352 "media_galleries/pmp_constants.h", 352 "media_galleries/pmp_constants.h",
353 ] 353 ]
354 } 354 }
355 if (is_win || is_mac || is_chromeos) {
356 sources += [
357 "extensions/api/networking_private/networking_private_crypto.cc",
358 "extensions/api/networking_private/networking_private_crypto.h",
359 ]
360
361 # networking_private_crypto.cc depends on boringssl.
362 public_deps += [ "//third_party/boringssl" ]
363 }
364 if (is_mac) { 355 if (is_mac) {
365 public_deps += [ ":app_mode_app_support" ] 356 public_deps += [ ":app_mode_app_support" ]
366 } 357 }
367 if (is_chromeos) { 358 if (is_chromeos) {
368 public_deps += [ "//chromeos" ] 359 public_deps += [ "//chromeos" ]
369 } 360 }
370 361
371 if (enable_nacl) { 362 if (enable_nacl) {
372 public_deps += [ "//components/nacl/common" ] 363 public_deps += [ "//components/nacl/common" ]
373 } 364 }
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
675 "shell_handler_win.mojom", 666 "shell_handler_win.mojom",
676 ] 667 ]
677 668
678 public_deps = [ 669 public_deps = [
679 "//skia/public/interfaces", 670 "//skia/public/interfaces",
680 "//url/mojo:url_mojom_gurl", 671 "//url/mojo:url_mojom_gurl",
681 ] 672 ]
682 673
683 use_new_wrapper_types = false 674 use_new_wrapper_types = false
684 } 675 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698