| 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("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 2326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2337 sources += [ | 2337 sources += [ |
| 2338 "chrome_browser_main_extra_parts_x11.cc", | 2338 "chrome_browser_main_extra_parts_x11.cc", |
| 2339 "chrome_browser_main_extra_parts_x11.h", | 2339 "chrome_browser_main_extra_parts_x11.h", |
| 2340 "password_manager/password_store_x.cc", | 2340 "password_manager/password_store_x.cc", |
| 2341 "password_manager/password_store_x.h", | 2341 "password_manager/password_store_x.h", |
| 2342 ] | 2342 ] |
| 2343 } | 2343 } |
| 2344 if (use_aura && !use_ozone && is_desktop_linux) { | 2344 if (use_aura && !use_ozone && is_desktop_linux) { |
| 2345 deps += [ "//chrome/browser/ui/libgtkui" ] | 2345 deps += [ "//chrome/browser/ui/libgtkui" ] |
| 2346 } | 2346 } |
| 2347 if (is_posix) { |
| 2348 deps += [ "//chrome/app:shutdown_signal_handlers" ] |
| 2349 } |
| 2347 if (is_posix && !is_mac) { | 2350 if (is_posix && !is_mac) { |
| 2348 sources += [ | 2351 sources += [ |
| 2349 "//chrome/app/chrome_crash_reporter_client.cc", | 2352 "//chrome/app/chrome_crash_reporter_client.cc", |
| 2350 "//chrome/app/chrome_crash_reporter_client.h", | 2353 "//chrome/app/chrome_crash_reporter_client.h", |
| 2351 ] | 2354 ] |
| 2352 deps += [ | 2355 deps += [ |
| 2353 "//components/crash/content/app", | 2356 "//components/crash/content/app", |
| 2354 "//components/crash/content/browser", | 2357 "//components/crash/content/browser", |
| 2355 "//components/version_info:generate_version_info", | 2358 "//components/version_info:generate_version_info", |
| 2356 ] | 2359 ] |
| (...skipping 2187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4544 "media/pepper_cdm_test_constants.cc", | 4547 "media/pepper_cdm_test_constants.cc", |
| 4545 "media/pepper_cdm_test_constants.h", | 4548 "media/pepper_cdm_test_constants.h", |
| 4546 ] | 4549 ] |
| 4547 } | 4550 } |
| 4548 } | 4551 } |
| 4549 | 4552 |
| 4550 service_manifest("preferences_manifest") { | 4553 service_manifest("preferences_manifest") { |
| 4551 name = "preferences" | 4554 name = "preferences" |
| 4552 source = "prefs/preferences_manifest.json" | 4555 source = "prefs/preferences_manifest.json" |
| 4553 } | 4556 } |
| OLD | NEW |