| 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/module_args/v8.gni") | 9 import("//build/module_args/v8.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 1300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1311 ] | 1311 ] |
| 1312 } | 1312 } |
| 1313 | 1313 |
| 1314 if (enable_extensions) { | 1314 if (enable_extensions) { |
| 1315 sources += | 1315 sources += |
| 1316 rebase_path(unit_gypi_values.chrome_unit_tests_extensions_sources, | 1316 rebase_path(unit_gypi_values.chrome_unit_tests_extensions_sources, |
| 1317 ".", | 1317 ".", |
| 1318 "//chrome") | 1318 "//chrome") |
| 1319 deps += [ | 1319 deps += [ |
| 1320 "//chrome/common/extensions/api", | 1320 "//chrome/common/extensions/api", |
| 1321 "//device/usb:mocks", |
| 1321 "//extensions:extensions_resources", | 1322 "//extensions:extensions_resources", |
| 1322 "//extensions/strings", | 1323 "//extensions/strings", |
| 1323 ] | 1324 ] |
| 1324 if (enable_configuration_policy) { | 1325 if (enable_configuration_policy) { |
| 1325 sources += rebase_path( | 1326 sources += rebase_path( |
| 1326 unit_gypi_values.chrome_unit_tests_extensions_policy_sources, | 1327 unit_gypi_values.chrome_unit_tests_extensions_policy_sources, |
| 1327 ".", | 1328 ".", |
| 1328 "//chrome") | 1329 "//chrome") |
| 1329 } | 1330 } |
| 1330 if (!is_chromeos) { | 1331 if (!is_chromeos) { |
| (...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1760 } | 1761 } |
| 1761 | 1762 |
| 1762 if (cld_version == 0 || cld_version == 2) { | 1763 if (cld_version == 0 || cld_version == 2) { |
| 1763 # Use whatever CLD2 data access mode that the | 1764 # Use whatever CLD2 data access mode that the |
| 1764 # application embedder is using. | 1765 # application embedder is using. |
| 1765 deps += [ "//third_party/cld_2:cld2_platform_impl" ] | 1766 deps += [ "//third_party/cld_2:cld2_platform_impl" ] |
| 1766 } | 1767 } |
| 1767 } | 1768 } |
| 1768 } | 1769 } |
| 1769 } | 1770 } |
| OLD | NEW |