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("//media/media_options.gni") | 9 import("//media/media_options.gni") |
10 import("//third_party/protobuf/proto_library.gni") | 10 import("//third_party/protobuf/proto_library.gni") |
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
605 sources += | 605 sources += |
606 rebase_path(gypi_values.chrome_browser_ash_sources, ".", "//chrome") | 606 rebase_path(gypi_values.chrome_browser_ash_sources, ".", "//chrome") |
607 } | 607 } |
608 | 608 |
609 if (use_x11) { | 609 if (use_x11) { |
610 sources += | 610 sources += |
611 rebase_path(gypi_values.chrome_browser_x11_sources, ".", "//chrome") | 611 rebase_path(gypi_values.chrome_browser_x11_sources, ".", "//chrome") |
612 } else { | 612 } else { |
613 sources -= [ "password_manager/password_store_x.cc" ] | 613 sources -= [ "password_manager/password_store_x.cc" ] |
614 } | 614 } |
615 if (is_posix && !is_mac && !is_ios) { | 615 if ((is_posix && !is_mac && !is_ios) || is_win) { |
616 sources += [ | 616 sources += [ |
617 "//chrome/app/chrome_crash_reporter_client.cc", | 617 "//chrome/app/chrome_crash_reporter_client.cc", |
618 "//chrome/app/chrome_crash_reporter_client.h", | 618 "//chrome/app/chrome_crash_reporter_client.h", |
619 ] | 619 ] |
620 deps += [ | 620 deps += [ |
621 "//components/crash/content/app", | 621 "//components/crash/content/app", |
622 "//components/crash/content/browser", | 622 "//components/crash/content/browser", |
623 "//components/version_info:generate_version_info", | 623 "//components/version_info:generate_version_info", |
624 ] | 624 ] |
625 } | 625 } |
(...skipping 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1274 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1274 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
1275 deps = [ | 1275 deps = [ |
1276 "//components/google/core/browser", | 1276 "//components/google/core/browser", |
1277 "//components/omnibox/browser", | 1277 "//components/omnibox/browser", |
1278 "//components/rlz", | 1278 "//components/rlz", |
1279 "//components/search_engines", | 1279 "//components/search_engines", |
1280 "//rlz:rlz_lib", | 1280 "//rlz:rlz_lib", |
1281 ] | 1281 ] |
1282 } | 1282 } |
1283 } | 1283 } |
OLD | NEW |