| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//components/nacl/nacl_defines.gni") | 8 import("//components/nacl/nacl_defines.gni") |
| 9 | 9 |
| 10 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which | 10 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which |
| (...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 } | 478 } |
| 479 | 479 |
| 480 if (use_ash) { | 480 if (use_ash) { |
| 481 sources += | 481 sources += |
| 482 rebase_path(gypi_values.chrome_browser_ash_sources, ".", "//chrome") | 482 rebase_path(gypi_values.chrome_browser_ash_sources, ".", "//chrome") |
| 483 } | 483 } |
| 484 | 484 |
| 485 if (use_x11) { | 485 if (use_x11) { |
| 486 sources += | 486 sources += |
| 487 rebase_path(gypi_values.chrome_browser_x11_sources, ".", "//chrome") | 487 rebase_path(gypi_values.chrome_browser_x11_sources, ".", "//chrome") |
| 488 } else { |
| 489 sources -= [ "password_manager/password_store_x.cc" ] |
| 488 } | 490 } |
| 489 if (is_posix && !is_mac && !is_ios) { | 491 if (is_posix && !is_mac && !is_ios) { |
| 490 sources += [ | 492 sources += [ |
| 491 "//chrome/app/chrome_crash_reporter_client.cc", | 493 "//chrome/app/chrome_crash_reporter_client.cc", |
| 492 "//chrome/app/chrome_crash_reporter_client.h", | 494 "//chrome/app/chrome_crash_reporter_client.h", |
| 493 ] | 495 ] |
| 494 deps += [ | 496 deps += [ |
| 495 "//components/crash/app", | 497 "//components/crash/app", |
| 496 "//components/crash/browser", | 498 "//components/crash/browser", |
| 497 ] | 499 ] |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 634 "google/did_run_updater_win.h", | 636 "google/did_run_updater_win.h", |
| 635 ] | 637 ] |
| 636 } | 638 } |
| 637 public_deps += [ | 639 public_deps += [ |
| 638 "//ui/views", | 640 "//ui/views", |
| 639 "//ui/views/controls/webview", | 641 "//ui/views/controls/webview", |
| 640 ] | 642 ] |
| 641 deps += [ | 643 deps += [ |
| 642 "//chrome:version_header", | 644 "//chrome:version_header", |
| 643 "//chrome/installer/util:strings", | 645 "//chrome/installer/util:strings", |
| 646 "//google_update", |
| 644 "//third_party/iaccessible2", | 647 "//third_party/iaccessible2", |
| 645 "//third_party/isimpledom", | 648 "//third_party/isimpledom", |
| 646 "//third_party/wtl", | 649 "//third_party/wtl", |
| 647 | 650 |
| 648 #"chrome_process_finder", TODO(GYP) | 651 #"chrome_process_finder", TODO(GYP) |
| 649 #"../chrome_elf/chrome_elf.gyp:chrome_elf", TODO(GYP) | 652 #"../chrome_elf/chrome_elf.gyp:chrome_elf", TODO(GYP) |
| 650 #"../chrome_elf/chrome_elf.gyp:chrome_elf_constants", TODO(GYP) | 653 #"../chrome_elf/chrome_elf.gyp:chrome_elf_constants", TODO(GYP) |
| 651 #"../chrome_elf/chrome_elf.gyp:dll_hash", TODO(GYP) | 654 #"../chrome_elf/chrome_elf.gyp:dll_hash", TODO(GYP) |
| 652 #"../google_update/google_update.gyp:google_update", TODO(GYP) | |
| 653 "//ui/metro_viewer", | 655 "//ui/metro_viewer", |
| 654 "//win8:metro_viewer", | 656 "//win8:metro_viewer", |
| 655 ] | 657 ] |
| 656 } else { | 658 } else { |
| 657 # Non-Windows. | 659 # Non-Windows. |
| 658 sources += | 660 sources += |
| 659 rebase_path(gypi_values.chrome_browser_non_win_sources, ".", "//chrome") | 661 rebase_path(gypi_values.chrome_browser_non_win_sources, ".", "//chrome") |
| 660 if (toolkit_views) { | 662 if (toolkit_views) { |
| 661 deps += [ | 663 deps += [ |
| 662 "//ui/views", | 664 "//ui/views", |
| (...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1063 ] | 1065 ] |
| 1064 } | 1066 } |
| 1065 | 1067 |
| 1066 if (enable_wifi_bootstrapping) { | 1068 if (enable_wifi_bootstrapping) { |
| 1067 sources += [ | 1069 sources += [ |
| 1068 "local_discovery/wifi/mock_wifi_manager.cc", | 1070 "local_discovery/wifi/mock_wifi_manager.cc", |
| 1069 "local_discovery/wifi/mock_wifi_manager.h", | 1071 "local_discovery/wifi/mock_wifi_manager.h", |
| 1070 ] | 1072 ] |
| 1071 } | 1073 } |
| 1072 } | 1074 } |
| OLD | NEW |