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 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
580 sources += rebase_path(gypi_values.chrome_browser_gnome_keyring_sources, | 580 sources += rebase_path(gypi_values.chrome_browser_gnome_keyring_sources, |
581 ".", | 581 ".", |
582 "//chrome") | 582 "//chrome") |
583 configs += [ ":gnome_keyring" ] | 583 configs += [ ":gnome_keyring" ] |
584 } | 584 } |
585 if (is_desktop_linux) { | 585 if (is_desktop_linux) { |
586 sources += rebase_path(gypi_values.chrome_browser_libsecret_sources, | 586 sources += rebase_path(gypi_values.chrome_browser_libsecret_sources, |
587 ".", | 587 ".", |
588 "//chrome") | 588 "//chrome") |
589 defines += [ "USE_LIBSECRET" ] | 589 defines += [ "USE_LIBSECRET" ] |
| 590 deps += [ "//third_party/libsecret" ] |
590 } | 591 } |
591 if (use_aura) { | 592 if (use_aura) { |
592 sources += | 593 sources += |
593 rebase_path(gypi_values.chrome_browser_aura_sources, ".", "//chrome") | 594 rebase_path(gypi_values.chrome_browser_aura_sources, ".", "//chrome") |
594 | 595 |
595 # These files are only built in a GN build because they bring in | 596 # These files are only built in a GN build because they bring in |
596 # dependencies that don't build with GYP. | 597 # dependencies that don't build with GYP. |
597 sources += [ | 598 sources += [ |
598 "ui/ash/launcher/chrome_mash_shelf_controller.cc", | 599 "ui/ash/launcher/chrome_mash_shelf_controller.cc", |
599 "ui/ash/launcher/chrome_mash_shelf_controller.h", | 600 "ui/ash/launcher/chrome_mash_shelf_controller.h", |
(...skipping 737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1337 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1338 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
1338 deps = [ | 1339 deps = [ |
1339 "//components/google/core/browser", | 1340 "//components/google/core/browser", |
1340 "//components/omnibox/browser", | 1341 "//components/omnibox/browser", |
1341 "//components/rlz", | 1342 "//components/rlz", |
1342 "//components/search_engines", | 1343 "//components/search_engines", |
1343 "//rlz:rlz_lib", | 1344 "//rlz:rlz_lib", |
1344 ] | 1345 ] |
1345 } | 1346 } |
1346 } | 1347 } |
OLD | NEW |