| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |