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 import("//extensions/extensions.gni") | 6 import("//extensions/extensions.gni") |
7 | 7 |
8 # GYP version: extensions/extensions.gyp:extensions_browser | 8 # GYP version: extensions/extensions.gyp:extensions_browser |
9 source_set("browser") { | 9 source_set("browser") { |
10 sources = [] | 10 sources = [] |
(...skipping 13 matching lines...) Expand all Loading... |
24 "//content/public/browser", | 24 "//content/public/browser", |
25 "//crypto:platform", | 25 "//crypto:platform", |
26 "//extensions/common", | 26 "//extensions/common", |
27 "//extensions/common/api", | 27 "//extensions/common/api", |
28 "//extensions/common/api:api_registration", | 28 "//extensions/common/api:api_registration", |
29 "//extensions/strings", | 29 "//extensions/strings", |
30 "//google_apis", | 30 "//google_apis", |
31 "//skia", | 31 "//skia", |
32 "//third_party/leveldatabase", | 32 "//third_party/leveldatabase", |
33 "//third_party/re2", | 33 "//third_party/re2", |
| 34 "//ui/display", |
34 ] | 35 ] |
35 | 36 |
36 configs += [ | 37 configs += [ |
37 "//build/config:precompiled_headers", | 38 "//build/config:precompiled_headers", |
38 | 39 |
39 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 40 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
40 "//build/config/compiler:no_size_t_to_int_warning", | 41 "//build/config/compiler:no_size_t_to_int_warning", |
41 ] | 42 ] |
42 | 43 |
43 if (enable_extensions) { | 44 if (enable_extensions) { |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 if (enable_wifi_display) { | 105 if (enable_wifi_display) { |
105 wifi_display_sources = rebase_path( | 106 wifi_display_sources = rebase_path( |
106 extensions_gypi_values.extensions_browser_sources_wifi_display, | 107 extensions_gypi_values.extensions_browser_sources_wifi_display, |
107 ".", | 108 ".", |
108 "//extensions") | 109 "//extensions") |
109 sources += wifi_display_sources | 110 sources += wifi_display_sources |
110 } | 111 } |
111 } | 112 } |
112 } | 113 } |
113 } | 114 } |
OLD | NEW |