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

Side by Side Diff: content/browser/BUILD.gn

Issue 2656463002: Implement MD simple gesture nav (Closed)
Patch Set: Rebased Created 3 years, 10 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//media/media_options.gni") 7 import("//media/media_options.gni")
8 import("//ppapi/features/features.gni") 8 import("//ppapi/features/features.gni")
9 import("//printing/features/features.gni") 9 import("//printing/features/features.gni")
10 import("//third_party/WebKit/public/public_features.gni") 10 import("//third_party/WebKit/public/public_features.gni")
(...skipping 1445 matching lines...) Expand 10 before | Expand all | Expand 10 after
1456 } 1456 }
1457 1457
1458 if (enable_basic_printing || enable_print_preview) { 1458 if (enable_basic_printing || enable_print_preview) {
1459 deps += [ "//printing" ] 1459 deps += [ "//printing" ]
1460 } 1460 }
1461 1461
1462 if (!is_mac) { 1462 if (!is_mac) {
1463 deps += [ "//sandbox" ] 1463 deps += [ "//sandbox" ]
1464 } 1464 }
1465 if (!is_android) { 1465 if (!is_android) {
1466 deps += [ "//content/browser/tracing:resources" ] 1466 deps += [
1467 "//content/browser/tracing:resources",
1468 "//ui/vector_icons",
1469 ]
1467 } 1470 }
1468 if ((use_udev && is_posix) || is_mac || is_win) { 1471 if ((use_udev && is_posix) || is_mac || is_win) {
1469 deps += [ "//tools/battor_agent:battor_agent_lib" ] 1472 deps += [ "//tools/battor_agent:battor_agent_lib" ]
1470 sources += [ 1473 sources += [
1471 "tracing/power_tracing_agent.cc", 1474 "tracing/power_tracing_agent.cc",
1472 "tracing/power_tracing_agent.h", 1475 "tracing/power_tracing_agent.h",
1473 ] 1476 ]
1474 } 1477 }
1475 1478
1476 if (enable_webrtc) { 1479 if (enable_webrtc) {
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after
2004 if (!is_component_build) { 2007 if (!is_component_build) {
2005 public_deps = [ 2008 public_deps = [
2006 ":browser", 2009 ":browser",
2007 ] 2010 ]
2008 } else { 2011 } else {
2009 public_deps = [ 2012 public_deps = [
2010 "//third_party/leveldatabase", 2013 "//third_party/leveldatabase",
2011 ] 2014 ]
2012 } 2015 }
2013 } 2016 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698