| 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("//media/media_options.gni") | 12 import("//media/media_options.gni") |
| 13 import("//net/features.gni") | 13 import("//net/features.gni") |
| 14 import("//ppapi/features/features.gni") | 14 import("//ppapi/features/features.gni") |
| 15 import("//printing/features/features.gni") |
| 15 import("//third_party/protobuf/proto_library.gni") | 16 import("//third_party/protobuf/proto_library.gni") |
| 16 | 17 |
| 17 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which | 18 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which |
| 18 # produces a conflict for the "grit" template so we have to only include one. | 19 # produces a conflict for the "grit" template so we have to only include one. |
| 19 if (is_android) { | 20 if (is_android) { |
| 20 import("//build/config/android/rules.gni") | 21 import("//build/config/android/rules.gni") |
| 21 } else { | 22 } else { |
| 22 import("//tools/grit/grit_rule.gni") | 23 import("//tools/grit/grit_rule.gni") |
| 23 } | 24 } |
| 24 | 25 |
| (...skipping 1407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1432 "//google_apis", | 1433 "//google_apis", |
| 1433 "//gpu/config", | 1434 "//gpu/config", |
| 1434 "//media", | 1435 "//media", |
| 1435 "//media/midi", | 1436 "//media/midi", |
| 1436 "//mojo/common", | 1437 "//mojo/common", |
| 1437 "//mojo/edk/system", | 1438 "//mojo/edk/system", |
| 1438 "//mojo/public/cpp/bindings", | 1439 "//mojo/public/cpp/bindings", |
| 1439 "//mojo/public/js", | 1440 "//mojo/public/js", |
| 1440 "//net:extras", | 1441 "//net:extras", |
| 1441 "//net:net_with_v8", | 1442 "//net:net_with_v8", |
| 1443 "//printing/features", |
| 1442 "//services/service_manager/public/cpp", | 1444 "//services/service_manager/public/cpp", |
| 1443 "//skia", | 1445 "//skia", |
| 1444 "//sql", | 1446 "//sql", |
| 1445 "//storage/browser", | 1447 "//storage/browser", |
| 1446 "//storage/common", | 1448 "//storage/common", |
| 1447 "//third_party/WebKit/public:features", | 1449 "//third_party/WebKit/public:features", |
| 1448 "//third_party/WebKit/public:image_resources", | 1450 "//third_party/WebKit/public:image_resources", |
| 1449 "//third_party/WebKit/public:resources", | 1451 "//third_party/WebKit/public:resources", |
| 1450 "//third_party/cacheinvalidation", | 1452 "//third_party/cacheinvalidation", |
| 1451 "//third_party/icu", | 1453 "//third_party/icu", |
| (...skipping 2920 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4372 # linking all of the test support. | 4374 # linking all of the test support. |
| 4373 static_library("pepper_cdm_test_constants") { | 4375 static_library("pepper_cdm_test_constants") { |
| 4374 testonly = true | 4376 testonly = true |
| 4375 visibility = [ "//chrome/*" ] | 4377 visibility = [ "//chrome/*" ] |
| 4376 sources = [ | 4378 sources = [ |
| 4377 "media/pepper_cdm_test_constants.cc", | 4379 "media/pepper_cdm_test_constants.cc", |
| 4378 "media/pepper_cdm_test_constants.h", | 4380 "media/pepper_cdm_test_constants.h", |
| 4379 ] | 4381 ] |
| 4380 } | 4382 } |
| 4381 } | 4383 } |
| OLD | NEW |