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

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

Issue 2335133003: PlzNavigate: support the WebRequest API (Closed)
Patch Set: PlzNavigate: support the WebRequest API Created 4 years, 3 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 6
7 source_set("browser") { 7 source_set("browser") {
8 sources = [] 8 sources = []
9 9
10 deps = [ 10 deps = [
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 "extension_host_observer.h", 111 "extension_host_observer.h",
112 "extension_host_queue.h", 112 "extension_host_queue.h",
113 "extension_icon_image.cc", 113 "extension_icon_image.cc",
114 "extension_icon_image.h", 114 "extension_icon_image.h",
115 "extension_icon_placeholder.cc", 115 "extension_icon_placeholder.cc",
116 "extension_icon_placeholder.h", 116 "extension_icon_placeholder.h",
117 "extension_message_filter.cc", 117 "extension_message_filter.cc",
118 "extension_message_filter.h", 118 "extension_message_filter.h",
119 "extension_navigation_throttle.cc", 119 "extension_navigation_throttle.cc",
120 "extension_navigation_throttle.h", 120 "extension_navigation_throttle.h",
121 "extension_navigation_ui_data.cc",
122 "extension_navigation_ui_data.h",
121 "extension_pref_store.cc", 123 "extension_pref_store.cc",
122 "extension_pref_store.h", 124 "extension_pref_store.h",
123 "extension_pref_value_map.cc", 125 "extension_pref_value_map.cc",
124 "extension_pref_value_map.h", 126 "extension_pref_value_map.h",
125 "extension_pref_value_map_factory.cc", 127 "extension_pref_value_map_factory.cc",
126 "extension_pref_value_map_factory.h", 128 "extension_pref_value_map_factory.h",
127 "extension_prefs.cc", 129 "extension_prefs.cc",
128 "extension_prefs.h", 130 "extension_prefs.h",
129 "extension_prefs_factory.cc", 131 "extension_prefs_factory.cc",
130 "extension_prefs_factory.h", 132 "extension_prefs_factory.h",
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 "//net:test_support", 437 "//net:test_support",
436 "//third_party/leveldatabase", 438 "//third_party/leveldatabase",
437 "//third_party/zlib:zip", 439 "//third_party/zlib:zip",
438 ] 440 ]
439 441
440 if (is_chromeos) { 442 if (is_chromeos) {
441 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] 443 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ]
442 deps += [ "//chromeos:test_support" ] 444 deps += [ "//chromeos:test_support" ]
443 } 445 }
444 } 446 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698