| 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("//components/spellcheck/spellcheck_build_features.gni") |
| 13 import("//extensions/features/features.gni") | 13 import("//extensions/features/features.gni") |
| 14 import("//media/media_options.gni") | 14 import("//media/media_options.gni") |
| 15 import("//net/features.gni") | 15 import("//net/features.gni") |
| 16 import("//ppapi/features/features.gni") | 16 import("//ppapi/features/features.gni") |
| 17 import("//printing/features/features.gni") | 17 import("//printing/features/features.gni") |
| 18 import("//third_party/protobuf/proto_library.gni") | 18 import("//third_party/protobuf/proto_library.gni") |
| 19 import("//ui/base/ui_features.gni") |
| 19 | 20 |
| 20 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which | 21 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which |
| 21 # produces a conflict for the "grit" template so we have to only include one. | 22 # produces a conflict for the "grit" template so we have to only include one. |
| 22 if (is_android) { | 23 if (is_android) { |
| 23 import("//build/config/android/rules.gni") | 24 import("//build/config/android/rules.gni") |
| 24 } else { | 25 } else { |
| 25 import("//tools/grit/grit_rule.gni") | 26 import("//tools/grit/grit_rule.gni") |
| 26 } | 27 } |
| 27 | 28 |
| 28 additional_modules_list_file = | 29 additional_modules_list_file = |
| (...skipping 4395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4424 # linking all of the test support. | 4425 # linking all of the test support. |
| 4425 static_library("pepper_cdm_test_constants") { | 4426 static_library("pepper_cdm_test_constants") { |
| 4426 testonly = true | 4427 testonly = true |
| 4427 visibility = [ "//chrome/*" ] | 4428 visibility = [ "//chrome/*" ] |
| 4428 sources = [ | 4429 sources = [ |
| 4429 "media/pepper_cdm_test_constants.cc", | 4430 "media/pepper_cdm_test_constants.cc", |
| 4430 "media/pepper_cdm_test_constants.h", | 4431 "media/pepper_cdm_test_constants.h", |
| 4431 ] | 4432 ] |
| 4432 } | 4433 } |
| 4433 } | 4434 } |
| OLD | NEW |