| 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") |
| 11 import("//components/os_crypt/features.gni") | 11 import("//components/os_crypt/features.gni") |
| 12 import("//components/spellcheck/spellcheck_build_features.gni") |
| 12 import("//extensions/features/features.gni") | 13 import("//extensions/features/features.gni") |
| 13 import("//media/media_options.gni") | 14 import("//media/media_options.gni") |
| 14 import("//net/features.gni") | 15 import("//net/features.gni") |
| 15 import("//ppapi/features/features.gni") | 16 import("//ppapi/features/features.gni") |
| 16 import("//printing/features/features.gni") | 17 import("//printing/features/features.gni") |
| 17 import("//third_party/protobuf/proto_library.gni") | 18 import("//third_party/protobuf/proto_library.gni") |
| 18 | 19 |
| 19 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which | 20 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which |
| 20 # produces a conflict for the "grit" template so we have to only include one. | 21 # produces a conflict for the "grit" template so we have to only include one. |
| 21 if (is_android) { | 22 if (is_android) { |
| (...skipping 1352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1374 "//components/resources", | 1375 "//components/resources", |
| 1375 "//components/safe_browsing_db", | 1376 "//components/safe_browsing_db", |
| 1376 "//components/safe_json", | 1377 "//components/safe_json", |
| 1377 "//components/search", | 1378 "//components/search", |
| 1378 "//components/search_engines", | 1379 "//components/search_engines", |
| 1379 "//components/search_provider_logos", | 1380 "//components/search_provider_logos", |
| 1380 "//components/security_interstitials/core", | 1381 "//components/security_interstitials/core", |
| 1381 "//components/security_state", | 1382 "//components/security_state", |
| 1382 "//components/sessions", | 1383 "//components/sessions", |
| 1383 "//components/signin/core/browser", | 1384 "//components/signin/core/browser", |
| 1385 "//components/spellcheck:build_features", |
| 1384 "//components/ssl_config", | 1386 "//components/ssl_config", |
| 1385 "//components/ssl_errors", | 1387 "//components/ssl_errors", |
| 1386 "//components/startup_metric_utils/browser:host", | 1388 "//components/startup_metric_utils/browser:host", |
| 1387 "//components/startup_metric_utils/browser:lib", | 1389 "//components/startup_metric_utils/browser:lib", |
| 1388 "//components/storage_monitor", | 1390 "//components/storage_monitor", |
| 1389 "//components/strings", | 1391 "//components/strings", |
| 1390 "//components/subresource_filter/content/browser", | 1392 "//components/subresource_filter/content/browser", |
| 1391 "//components/subresource_filter/core/browser", | 1393 "//components/subresource_filter/core/browser", |
| 1392 "//components/suggestions", | 1394 "//components/suggestions", |
| 1393 "//components/supervised_user_error_page", | 1395 "//components/supervised_user_error_page", |
| (...skipping 3008 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4402 # linking all of the test support. | 4404 # linking all of the test support. |
| 4403 static_library("pepper_cdm_test_constants") { | 4405 static_library("pepper_cdm_test_constants") { |
| 4404 testonly = true | 4406 testonly = true |
| 4405 visibility = [ "//chrome/*" ] | 4407 visibility = [ "//chrome/*" ] |
| 4406 sources = [ | 4408 sources = [ |
| 4407 "media/pepper_cdm_test_constants.cc", | 4409 "media/pepper_cdm_test_constants.cc", |
| 4408 "media/pepper_cdm_test_constants.h", | 4410 "media/pepper_cdm_test_constants.h", |
| 4409 ] | 4411 ] |
| 4410 } | 4412 } |
| 4411 } | 4413 } |
| OLD | NEW |