| 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("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
| 10 | 10 |
| (...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 579 rebase_path(gypi_values.chrome_browser_x11_sources, ".", "//chrome") | 579 rebase_path(gypi_values.chrome_browser_x11_sources, ".", "//chrome") |
| 580 } else { | 580 } else { |
| 581 sources -= [ "password_manager/password_store_x.cc" ] | 581 sources -= [ "password_manager/password_store_x.cc" ] |
| 582 } | 582 } |
| 583 if (is_posix && !is_mac && !is_ios) { | 583 if (is_posix && !is_mac && !is_ios) { |
| 584 sources += [ | 584 sources += [ |
| 585 "//chrome/app/chrome_crash_reporter_client.cc", | 585 "//chrome/app/chrome_crash_reporter_client.cc", |
| 586 "//chrome/app/chrome_crash_reporter_client.h", | 586 "//chrome/app/chrome_crash_reporter_client.h", |
| 587 ] | 587 ] |
| 588 deps += [ | 588 deps += [ |
| 589 "//components/crash/app", | 589 "//components/crash/content/app", |
| 590 "//components/crash/browser", | 590 "//components/crash/content/browser", |
| 591 ] | 591 ] |
| 592 } | 592 } |
| 593 if (use_nss_certs) { | 593 if (use_nss_certs) { |
| 594 sources += | 594 sources += |
| 595 rebase_path(gypi_values.chrome_browser_nss_sources, ".", "//chrome") | 595 rebase_path(gypi_values.chrome_browser_nss_sources, ".", "//chrome") |
| 596 if (is_chromeos) { | 596 if (is_chromeos) { |
| 597 sources -= [ "net/nss_context_linux.cc" ] | 597 sources -= [ "net/nss_context_linux.cc" ] |
| 598 } | 598 } |
| 599 } | 599 } |
| 600 if (enable_notifications) { | 600 if (enable_notifications) { |
| (...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1252 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1252 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1253 deps = [ | 1253 deps = [ |
| 1254 "//components/google/core/browser", | 1254 "//components/google/core/browser", |
| 1255 "//components/omnibox/browser", | 1255 "//components/omnibox/browser", |
| 1256 "//components/rlz", | 1256 "//components/rlz", |
| 1257 "//components/search_engines", | 1257 "//components/search_engines", |
| 1258 "//rlz:rlz_lib", | 1258 "//rlz:rlz_lib", |
| 1259 ] | 1259 ] |
| 1260 } | 1260 } |
| 1261 } | 1261 } |
| OLD | NEW |