| 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") |
| (...skipping 1235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1246 "win/jumplist_updater.h", | 1246 "win/jumplist_updater.h", |
| 1247 "win/settings_app_monitor.cc", | 1247 "win/settings_app_monitor.cc", |
| 1248 "win/settings_app_monitor.h", | 1248 "win/settings_app_monitor.h", |
| 1249 "win/titlebar_config.cc", | 1249 "win/titlebar_config.cc", |
| 1250 "win/titlebar_config.h", | 1250 "win/titlebar_config.h", |
| 1251 ] | 1251 ] |
| 1252 | 1252 |
| 1253 configs += [ | 1253 configs += [ |
| 1254 "//build/config/compiler:wexit_time_destructors", | 1254 "//build/config/compiler:wexit_time_destructors", |
| 1255 "//build/config:precompiled_headers", | 1255 "//build/config:precompiled_headers", |
| 1256 "//third_party/WebKit/public:debug_devtools", | |
| 1257 ] | 1256 ] |
| 1258 defines = [] | 1257 defines = [] |
| 1259 libs = [] | 1258 libs = [] |
| 1260 ldflags = [] | 1259 ldflags = [] |
| 1261 | 1260 |
| 1262 allow_circular_includes_from = [ "//chrome/browser/ui" ] | 1261 allow_circular_includes_from = [ "//chrome/browser/ui" ] |
| 1263 | 1262 |
| 1264 # iOS/non-iOS shared deps. New dependencies should generally be added in the | 1263 # iOS/non-iOS shared deps. New dependencies should generally be added in the |
| 1265 # non-iOS deps below. | 1264 # non-iOS deps below. |
| 1266 public_deps = [ | 1265 public_deps = [ |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1434 "//mojo/edk/system", | 1433 "//mojo/edk/system", |
| 1435 "//mojo/public/cpp/bindings", | 1434 "//mojo/public/cpp/bindings", |
| 1436 "//mojo/public/js", | 1435 "//mojo/public/js", |
| 1437 "//net:extras", | 1436 "//net:extras", |
| 1438 "//net:net_with_v8", | 1437 "//net:net_with_v8", |
| 1439 "//services/service_manager/public/cpp", | 1438 "//services/service_manager/public/cpp", |
| 1440 "//skia", | 1439 "//skia", |
| 1441 "//sql", | 1440 "//sql", |
| 1442 "//storage/browser", | 1441 "//storage/browser", |
| 1443 "//storage/common", | 1442 "//storage/common", |
| 1443 "//third_party/WebKit/public:features", |
| 1444 "//third_party/WebKit/public:image_resources", | 1444 "//third_party/WebKit/public:image_resources", |
| 1445 "//third_party/WebKit/public:resources", | 1445 "//third_party/WebKit/public:resources", |
| 1446 "//third_party/cacheinvalidation", | 1446 "//third_party/cacheinvalidation", |
| 1447 "//third_party/icu", | 1447 "//third_party/icu", |
| 1448 "//third_party/kasko", | 1448 "//third_party/kasko", |
| 1449 "//third_party/leveldatabase", | 1449 "//third_party/leveldatabase", |
| 1450 "//third_party/libaddressinput", | 1450 "//third_party/libaddressinput", |
| 1451 "//third_party/libjingle", | 1451 "//third_party/libjingle", |
| 1452 "//third_party/libxml", | 1452 "//third_party/libxml", |
| 1453 "//third_party/libyuv", | 1453 "//third_party/libyuv", |
| (...skipping 2910 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4364 # linking all of the test support. | 4364 # linking all of the test support. |
| 4365 static_library("pepper_cdm_test_constants") { | 4365 static_library("pepper_cdm_test_constants") { |
| 4366 testonly = true | 4366 testonly = true |
| 4367 visibility = [ "//chrome/*" ] | 4367 visibility = [ "//chrome/*" ] |
| 4368 sources = [ | 4368 sources = [ |
| 4369 "media/pepper_cdm_test_constants.cc", | 4369 "media/pepper_cdm_test_constants.cc", |
| 4370 "media/pepper_cdm_test_constants.h", | 4370 "media/pepper_cdm_test_constants.h", |
| 4371 ] | 4371 ] |
| 4372 } | 4372 } |
| 4373 } | 4373 } |
| OLD | NEW |