| 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/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//chrome/common/features.gni") | 9 import("//chrome/common/features.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 639 "//chrome/app/chrome_crash_reporter_client.h", | 639 "//chrome/app/chrome_crash_reporter_client.h", |
| 640 ] | 640 ] |
| 641 deps += [ | 641 deps += [ |
| 642 "//components/crash/content/app", | 642 "//components/crash/content/app", |
| 643 "//components/crash/content/browser", | 643 "//components/crash/content/browser", |
| 644 "//components/version_info:generate_version_info", | 644 "//components/version_info:generate_version_info", |
| 645 ] | 645 ] |
| 646 } | 646 } |
| 647 if (is_win && enable_kasko_failed_rdv_reports) { | 647 if (is_win && enable_kasko_failed_rdv_reports) { |
| 648 sources += [ | 648 sources += [ |
| 649 "//chrome/app/chrome_crash_reporter_client.cc", | 649 "//chrome/app/chrome_crash_reporter_client_win.cc", |
| 650 "//chrome/app/chrome_crash_reporter_client.h", | 650 "//chrome/app/chrome_crash_reporter_client_win.h", |
| 651 ] | 651 ] |
| 652 deps += [ "//components/crash/content/app:lib" ] | 652 deps += [ "//components/crash/content/app:lib" ] |
| 653 } | 653 } |
| 654 if (use_nss_certs) { | 654 if (use_nss_certs) { |
| 655 sources += | 655 sources += |
| 656 rebase_path(gypi_values.chrome_browser_nss_sources, ".", "//chrome") | 656 rebase_path(gypi_values.chrome_browser_nss_sources, ".", "//chrome") |
| 657 if (is_chromeos) { | 657 if (is_chromeos) { |
| 658 sources -= [ "net/nss_context_linux.cc" ] | 658 sources -= [ "net/nss_context_linux.cc" ] |
| 659 } | 659 } |
| 660 } | 660 } |
| (...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1335 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1335 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1336 deps = [ | 1336 deps = [ |
| 1337 "//components/google/core/browser", | 1337 "//components/google/core/browser", |
| 1338 "//components/omnibox/browser", | 1338 "//components/omnibox/browser", |
| 1339 "//components/rlz", | 1339 "//components/rlz", |
| 1340 "//components/search_engines", | 1340 "//components/search_engines", |
| 1341 "//rlz:rlz_lib", | 1341 "//rlz:rlz_lib", |
| 1342 ] | 1342 ] |
| 1343 } | 1343 } |
| 1344 } | 1344 } |
| OLD | NEW |