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("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
6 | 6 |
7 gypi_values = exec_script( | 7 gypi_values = exec_script( |
8 "//build/gypi_to_gn.py", | 8 "//build/gypi_to_gn.py", |
9 [ rebase_path("../chrome_common.gypi") ], | 9 [ rebase_path("../chrome_common.gypi") ], |
10 "scope", | 10 "scope", |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 "//chrome/installer/util", | 55 "//chrome/installer/util", |
56 "//components/cloud_devices/common", | 56 "//components/cloud_devices/common", |
57 "//components/content_settings/core/common", | 57 "//components/content_settings/core/common", |
58 "//components/json_schema", | 58 "//components/json_schema", |
59 "//components/metrics", | 59 "//components/metrics", |
60 "//components/policy:policy_component_common", | 60 "//components/policy:policy_component_common", |
61 "//components/translate/core/common", | 61 "//components/translate/core/common", |
62 "//components/variations", | 62 "//components/variations", |
63 "//content/public/common", | 63 "//content/public/common", |
64 "//crypto", | 64 "//crypto", |
| 65 "//extensions/strings", |
65 "//media/cast:net", | 66 "//media/cast:net", |
66 "//net", | 67 "//net", |
67 "//skia", | 68 "//skia", |
68 "//third_party/icu", | 69 "//third_party/icu", |
69 "//third_party/libxml", | 70 "//third_party/libxml", |
70 "//third_party/sqlite", | 71 "//third_party/sqlite", |
71 "//third_party/zlib:zip", | 72 "//third_party/zlib:zip", |
72 "//ui/resources:resources", | 73 "//ui/resources:resources", |
73 "//url", | 74 "//url", |
74 ] | 75 ] |
(...skipping 22 matching lines...) Expand all Loading... |
97 | 98 |
98 if (enable_extensions) { | 99 if (enable_extensions) { |
99 sources += rebase_path( | 100 sources += rebase_path( |
100 gypi_values.chrome_common_extensions_sources, | 101 gypi_values.chrome_common_extensions_sources, |
101 ".", "//chrome") | 102 ".", "//chrome") |
102 deps += [ | 103 deps += [ |
103 "//device/bluetooth", | 104 "//device/bluetooth", |
104 "//device/usb", | 105 "//device/usb", |
105 "//extensions/common", | 106 "//extensions/common", |
106 "//extensions/common/api", | 107 "//extensions/common/api", |
107 "//extensions/strings", | |
108 "//extensions:extensions_resources", | |
109 ] | 108 ] |
110 } | 109 } |
111 | 110 |
112 if (is_win || is_mac) { | 111 if (is_win || is_mac) { |
113 sources += rebase_path( | 112 sources += rebase_path( |
114 gypi_values.chrome_common_win_mac_sources, | 113 gypi_values.chrome_common_win_mac_sources, |
115 ".", "//chrome") | 114 ".", "//chrome") |
116 if (use_openssl) { | 115 if (use_openssl) { |
117 sources -= [ | 116 sources -= [ |
118 "extensions/api/networking_private/networking_private_crypto_nss.cc", | 117 "extensions/api/networking_private/networking_private_crypto_nss.cc", |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 if (is_win || is_mac) { | 309 if (is_win || is_mac) { |
311 sources += [ | 310 sources += [ |
312 "media_galleries/picasa_test_util.cc", | 311 "media_galleries/picasa_test_util.cc", |
313 "media_galleries/picasa_test_util.cc", | 312 "media_galleries/picasa_test_util.cc", |
314 "media_galleries/pmp_test_util.cc", | 313 "media_galleries/pmp_test_util.cc", |
315 "media_galleries/pmp_test_util.h", | 314 "media_galleries/pmp_test_util.h", |
316 ] | 315 ] |
317 } | 316 } |
318 | 317 |
319 } | 318 } |
OLD | NEW |