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/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 Loading... |
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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
436 "//net:test_support", | 438 "//net:test_support", |
437 "//third_party/leveldatabase", | 439 "//third_party/leveldatabase", |
438 "//third_party/zlib:zip", | 440 "//third_party/zlib:zip", |
439 ] | 441 ] |
440 | 442 |
441 if (is_chromeos) { | 443 if (is_chromeos) { |
442 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] | 444 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] |
443 deps += [ "//chromeos:test_support" ] | 445 deps += [ "//chromeos:test_support" ] |
444 } | 446 } |
445 } | 447 } |
OLD | NEW |