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 588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
599 sources += | 599 sources += |
600 rebase_path(gypi_values.chrome_browser_ash_sources, ".", "//chrome") | 600 rebase_path(gypi_values.chrome_browser_ash_sources, ".", "//chrome") |
601 } | 601 } |
602 | 602 |
603 if (use_x11) { | 603 if (use_x11) { |
604 sources += | 604 sources += |
605 rebase_path(gypi_values.chrome_browser_x11_sources, ".", "//chrome") | 605 rebase_path(gypi_values.chrome_browser_x11_sources, ".", "//chrome") |
606 } else { | 606 } else { |
607 sources -= [ "password_manager/password_store_x.cc" ] | 607 sources -= [ "password_manager/password_store_x.cc" ] |
608 } | 608 } |
609 if (is_posix && !is_mac && !is_ios) { | 609 if ((is_posix && !is_mac && !is_ios) || is_win) { |
610 sources += [ | 610 sources += [ |
611 "//chrome/app/chrome_crash_reporter_client.cc", | 611 "//chrome/app/chrome_crash_reporter_client.cc", |
612 "//chrome/app/chrome_crash_reporter_client.h", | 612 "//chrome/app/chrome_crash_reporter_client.h", |
613 ] | 613 ] |
614 deps += [ | 614 deps += [ |
615 "//components/crash/content/app", | 615 "//components/crash/content/app", |
616 "//components/crash/content/browser", | 616 "//components/crash/content/browser", |
617 "//components/version_info:generate_version_info", | 617 "//components/version_info:generate_version_info", |
618 ] | 618 ] |
619 } | 619 } |
(...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1264 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1264 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
1265 deps = [ | 1265 deps = [ |
1266 "//components/google/core/browser", | 1266 "//components/google/core/browser", |
1267 "//components/omnibox/browser", | 1267 "//components/omnibox/browser", |
1268 "//components/rlz", | 1268 "//components/rlz", |
1269 "//components/search_engines", | 1269 "//components/search_engines", |
1270 "//rlz:rlz_lib", | 1270 "//rlz:rlz_lib", |
1271 ] | 1271 ] |
1272 } | 1272 } |
1273 } | 1273 } |
OLD | NEW |