| 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 1202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1213 "chromeos/policy/fake_consumer_management_service.cc", | 1213 "chromeos/policy/fake_consumer_management_service.cc", |
| 1214 "chromeos/policy/fake_consumer_management_service.h", | 1214 "chromeos/policy/fake_consumer_management_service.h", |
| 1215 "chromeos/policy/fake_device_cloud_policy_initializer.cc", | 1215 "chromeos/policy/fake_device_cloud_policy_initializer.cc", |
| 1216 "chromeos/policy/fake_device_cloud_policy_initializer.h", | 1216 "chromeos/policy/fake_device_cloud_policy_initializer.h", |
| 1217 "chromeos/policy/fake_device_cloud_policy_manager.cc", | 1217 "chromeos/policy/fake_device_cloud_policy_manager.cc", |
| 1218 "chromeos/policy/fake_device_cloud_policy_manager.h", | 1218 "chromeos/policy/fake_device_cloud_policy_manager.h", |
| 1219 "chromeos/policy/stub_enterprise_install_attributes.cc", | 1219 "chromeos/policy/stub_enterprise_install_attributes.cc", |
| 1220 "chromeos/policy/stub_enterprise_install_attributes.h", | 1220 "chromeos/policy/stub_enterprise_install_attributes.h", |
| 1221 "chromeos/settings/device_settings_test_helper.cc", | 1221 "chromeos/settings/device_settings_test_helper.cc", |
| 1222 "chromeos/settings/device_settings_test_helper.h", | 1222 "chromeos/settings/device_settings_test_helper.h", |
| 1223 "chromeos/system/fake_input_device_settings.cc", | |
| 1224 "chromeos/system/fake_input_device_settings.h", | |
| 1225 ] | 1223 ] |
| 1226 configs += [ "//build/config/linux/dbus" ] | 1224 configs += [ "//build/config/linux/dbus" ] |
| 1227 deps += [ "//chromeos:test_support" ] | 1225 deps += [ "//chromeos:test_support" ] |
| 1226 if (is_official_build || !is_debug) { |
| 1227 sources += [ |
| 1228 "chromeos/system/fake_input_device_settings.cc", |
| 1229 "chromeos/system/fake_input_device_settings.h", |
| 1230 ] |
| 1231 } |
| 1228 } | 1232 } |
| 1229 | 1233 |
| 1230 if (enable_configuration_policy) { | 1234 if (enable_configuration_policy) { |
| 1231 sources += [ | 1235 sources += [ |
| 1232 "policy/test/local_policy_test_server.cc", | 1236 "policy/test/local_policy_test_server.cc", |
| 1233 "policy/test/local_policy_test_server.h", | 1237 "policy/test/local_policy_test_server.h", |
| 1234 ] | 1238 ] |
| 1235 public_deps += [ | 1239 public_deps += [ |
| 1236 "//components/policy:policy_component_test_support", | 1240 "//components/policy:policy_component_test_support", |
| 1237 "//components/policy:test_support", | 1241 "//components/policy:test_support", |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1332 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1336 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1333 deps = [ | 1337 deps = [ |
| 1334 "//components/google/core/browser", | 1338 "//components/google/core/browser", |
| 1335 "//components/omnibox/browser", | 1339 "//components/omnibox/browser", |
| 1336 "//components/rlz", | 1340 "//components/rlz", |
| 1337 "//components/search_engines", | 1341 "//components/search_engines", |
| 1338 "//rlz:rlz_lib", | 1342 "//rlz:rlz_lib", |
| 1339 ] | 1343 ] |
| 1340 } | 1344 } |
| 1341 } | 1345 } |
| OLD | NEW |