Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(140)

Side by Side Diff: chrome/test/BUILD.gn

Issue 1350023003: Add a Mojo EDK for Chrome that uses one OS pipe per message pipe. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move to mojo::edk namespace in preparation for runtim flag Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1994 matching lines...) Expand 10 before | Expand all | Expand 10 after
2005 ] 2005 ]
2006 2006
2007 deps = [ 2007 deps = [
2008 ":test_support", 2008 ":test_support",
2009 "//base", 2009 "//base",
2010 "//chrome:resources", 2010 "//chrome:resources",
2011 "//chrome:strings", 2011 "//chrome:strings",
2012 "//chrome/browser", 2012 "//chrome/browser",
2013 "//chrome/common", 2013 "//chrome/common",
2014 "//mojo/environment:chromium", 2014 "//mojo/environment:chromium",
2015 "//third_party/mojo/src/mojo/edk/system",
2016 ] 2015 ]
2017 2016
2017 if (use_chrome_edk) {
2018 deps += [ "//mojo/edk/system" ]
2019 } else {
2020 deps += [ "//third_party/mojo/src/mojo/edk/system" ]
2021 }
2022
2018 if (!is_android && use_ash) { 2023 if (!is_android && use_ash) {
2019 sources += rebase_path( 2024 sources += rebase_path(
2020 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, 2025 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources,
2021 ".", 2026 ".",
2022 "//chrome") 2027 "//chrome")
2023 } 2028 }
2024 } 2029 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698