| 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/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 1929 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1940 "//net:test_support", | 1940 "//net:test_support", |
| 1941 "//sdch", | 1941 "//sdch", |
| 1942 "//services/service_manager/public/cpp", | 1942 "//services/service_manager/public/cpp", |
| 1943 "//skia", | 1943 "//skia", |
| 1944 "//testing/gmock", | 1944 "//testing/gmock", |
| 1945 "//testing/gtest", | 1945 "//testing/gtest", |
| 1946 "//testing/perf", | 1946 "//testing/perf", |
| 1947 "//third_party/cacheinvalidation", | 1947 "//third_party/cacheinvalidation", |
| 1948 "//third_party/icu", | 1948 "//third_party/icu", |
| 1949 "//third_party/leveldatabase", | 1949 "//third_party/leveldatabase", |
| 1950 "//third_party/libjingle", | |
| 1951 "//third_party/webrtc/modules/desktop_capture", | 1950 "//third_party/webrtc/modules/desktop_capture", |
| 1951 "//third_party/webrtc_overrides", |
| 1952 "//third_party/widevine/cdm:headers", | 1952 "//third_party/widevine/cdm:headers", |
| 1953 "//ui/accessibility:test_support", | 1953 "//ui/accessibility:test_support", |
| 1954 "//ui/base:test_support", | 1954 "//ui/base:test_support", |
| 1955 "//ui/compositor:test_support", | 1955 "//ui/compositor:test_support", |
| 1956 "//ui/resources", | 1956 "//ui/resources", |
| 1957 "//ui/web_dialogs:test_support", | 1957 "//ui/web_dialogs:test_support", |
| 1958 "//v8", | 1958 "//v8", |
| 1959 ] | 1959 ] |
| 1960 | 1960 |
| 1961 # Runtime dependencies | 1961 # Runtime dependencies |
| (...skipping 1560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3522 "//net", | 3522 "//net", |
| 3523 "//net:test_support", | 3523 "//net:test_support", |
| 3524 "//ppapi/features", | 3524 "//ppapi/features", |
| 3525 "//skia", | 3525 "//skia", |
| 3526 "//testing/gmock", | 3526 "//testing/gmock", |
| 3527 "//testing/gtest", | 3527 "//testing/gtest", |
| 3528 "//third_party/cacheinvalidation", | 3528 "//third_party/cacheinvalidation", |
| 3529 "//third_party/icu", | 3529 "//third_party/icu", |
| 3530 "//third_party/leveldatabase", | 3530 "//third_party/leveldatabase", |
| 3531 "//third_party/libaddressinput", | 3531 "//third_party/libaddressinput", |
| 3532 "//third_party/libjingle", | |
| 3533 "//third_party/libphonenumber", | 3532 "//third_party/libphonenumber", |
| 3534 "//third_party/libxml", | 3533 "//third_party/libxml", |
| 3535 "//third_party/webrtc/modules/desktop_capture", | 3534 "//third_party/webrtc/modules/desktop_capture", |
| 3535 "//third_party/webrtc_overrides", |
| 3536 "//ui/base:test_support", | 3536 "//ui/base:test_support", |
| 3537 "//ui/display:test_support", | 3537 "//ui/display:test_support", |
| 3538 "//ui/gfx:test_support", | 3538 "//ui/gfx:test_support", |
| 3539 "//ui/gl", | 3539 "//ui/gl", |
| 3540 "//ui/resources", | 3540 "//ui/resources", |
| 3541 "//v8", | 3541 "//v8", |
| 3542 ] | 3542 ] |
| 3543 | 3543 |
| 3544 if (is_mac) { | 3544 if (is_mac) { |
| 3545 data_deps += [ "//chrome:chrome_framework" ] | 3545 data_deps += [ "//chrome:chrome_framework" ] |
| (...skipping 1631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5177 } | 5177 } |
| 5178 | 5178 |
| 5179 if (is_win) { | 5179 if (is_win) { |
| 5180 loadable_module("conflicts_dll") { | 5180 loadable_module("conflicts_dll") { |
| 5181 testonly = true | 5181 testonly = true |
| 5182 sources = [ | 5182 sources = [ |
| 5183 "conflicts/conflicts_dll.cc", | 5183 "conflicts/conflicts_dll.cc", |
| 5184 ] | 5184 ] |
| 5185 } | 5185 } |
| 5186 } | 5186 } |
| OLD | NEW |