| 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 2278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2289 "metrics/perf/cpu_identity.cc", | 2289 "metrics/perf/cpu_identity.cc", |
| 2290 "metrics/perf/cpu_identity.h", | 2290 "metrics/perf/cpu_identity.h", |
| 2291 "metrics/perf/perf_output.cc", | 2291 "metrics/perf/perf_output.cc", |
| 2292 "metrics/perf/perf_output.h", | 2292 "metrics/perf/perf_output.h", |
| 2293 "metrics/perf/random_selector.cc", | 2293 "metrics/perf/random_selector.cc", |
| 2294 "metrics/perf/random_selector.h", | 2294 "metrics/perf/random_selector.h", |
| 2295 "metrics/perf/windowed_incognito_observer.cc", | 2295 "metrics/perf/windowed_incognito_observer.cc", |
| 2296 "metrics/perf/windowed_incognito_observer.h", | 2296 "metrics/perf/windowed_incognito_observer.h", |
| 2297 "policy/default_geolocation_policy_handler.cc", | 2297 "policy/default_geolocation_policy_handler.cc", |
| 2298 "policy/default_geolocation_policy_handler.h", | 2298 "policy/default_geolocation_policy_handler.h", |
| 2299 "prefs/active_profile_pref_service.cc", |
| 2300 "prefs/active_profile_pref_service.h", |
| 2299 "task_manager/providers/arc/arc_process_filter.cc", | 2301 "task_manager/providers/arc/arc_process_filter.cc", |
| 2300 "task_manager/providers/arc/arc_process_filter.h", | 2302 "task_manager/providers/arc/arc_process_filter.h", |
| 2301 "task_manager/providers/arc/arc_process_task.cc", | 2303 "task_manager/providers/arc/arc_process_task.cc", |
| 2302 "task_manager/providers/arc/arc_process_task.h", | 2304 "task_manager/providers/arc/arc_process_task.h", |
| 2303 "task_manager/providers/arc/arc_process_task_provider.cc", | 2305 "task_manager/providers/arc/arc_process_task_provider.cc", |
| 2304 "task_manager/providers/arc/arc_process_task_provider.h", | 2306 "task_manager/providers/arc/arc_process_task_provider.h", |
| 2305 ] | 2307 ] |
| 2306 deps += [ "//chrome/browser/chromeos" ] | 2308 deps += [ "//chrome/browser/chromeos" ] |
| 2307 public_deps += [ | 2309 public_deps += [ |
| 2308 "//components/metrics/leak_detector:interfaces", | 2310 "//components/metrics/leak_detector:interfaces", |
| (...skipping 2299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4608 "media/pepper_cdm_test_constants.cc", | 4610 "media/pepper_cdm_test_constants.cc", |
| 4609 "media/pepper_cdm_test_constants.h", | 4611 "media/pepper_cdm_test_constants.h", |
| 4610 ] | 4612 ] |
| 4611 } | 4613 } |
| 4612 } | 4614 } |
| 4613 | 4615 |
| 4614 service_manifest("preferences_manifest") { | 4616 service_manifest("preferences_manifest") { |
| 4615 name = "preferences" | 4617 name = "preferences" |
| 4616 source = "prefs/preferences_manifest.json" | 4618 source = "prefs/preferences_manifest.json" |
| 4617 } | 4619 } |
| 4620 |
| 4621 service_manifest("preferences_forwarder_manifest") { |
| 4622 name = "preferences_forwarder" |
| 4623 source = "prefs/forwarder_manifest.json" |
| 4624 } |
| OLD | NEW |