Chromium Code Reviews| 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/chrome_tests.gni") | 10 import("//chrome/chrome_tests.gni") |
| (...skipping 1208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1219 "../browser/media/webrtc_simulcast_browsertest.cc", | 1219 "../browser/media/webrtc_simulcast_browsertest.cc", |
| 1220 "../browser/media/webrtc_video_quality_browsertest.cc", | 1220 "../browser/media/webrtc_video_quality_browsertest.cc", |
| 1221 "../browser/media/webrtc_webcam_browsertest.cc", | 1221 "../browser/media/webrtc_webcam_browsertest.cc", |
| 1222 ] | 1222 ] |
| 1223 } | 1223 } |
| 1224 if (enable_media_router) { | 1224 if (enable_media_router) { |
| 1225 sources += [ "../browser/ui/webui/media_router/media_router_dialog_control ler_impl_browsertest.cc" ] | 1225 sources += [ "../browser/ui/webui/media_router/media_router_dialog_control ler_impl_browsertest.cc" ] |
| 1226 deps += [ "//chrome/test/media_router:media_router_browsertests" ] | 1226 deps += [ "//chrome/test/media_router:media_router_browsertests" ] |
| 1227 } | 1227 } |
| 1228 if (is_win) { | 1228 if (is_win) { |
| 1229 sources += | |
|
grt (UTC plus 2)
2016/07/19 08:13:01
i think you can remove this if you move the file i
zmin
2016/07/20 16:35:45
Done.
| |
| 1230 [ "../browser/ui/webui/set_as_default_browser_ui_browsertest_win.cc" ] | |
| 1229 deps += [ | 1231 deps += [ |
| 1230 "//chrome:other_version", | 1232 "//chrome:other_version", |
| 1231 "//third_party/wtl", | 1233 "//third_party/wtl", |
| 1232 "//ui/resources", | 1234 "//ui/resources", |
| 1233 ] | 1235 ] |
| 1234 } else { | 1236 } else { |
| 1235 sources -= [ | 1237 sources -= [ |
| 1236 "../app/chrome_command_ids.h", | 1238 "../app/chrome_command_ids.h", |
| 1237 "../app/chrome_dll_resource.h", | 1239 "../app/chrome_dll_resource.h", |
| 1238 "../app/chrome_version.rc.version", | 1240 "../app/chrome_version.rc.version", |
| (...skipping 1214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2453 if (is_android) { | 2455 if (is_android) { |
| 2454 android_library("unit_tests_java") { | 2456 android_library("unit_tests_java") { |
| 2455 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ] | 2457 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ] |
| 2456 deps = [ | 2458 deps = [ |
| 2457 "//base:base_java", | 2459 "//base:base_java", |
| 2458 "//chrome/android:chrome_java", | 2460 "//chrome/android:chrome_java", |
| 2459 "//content/public/android:content_java", | 2461 "//content/public/android:content_java", |
| 2460 ] | 2462 ] |
| 2461 } | 2463 } |
| 2462 } | 2464 } |
| OLD | NEW |