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/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 | 8 |
9 gypi_values = exec_script( | 9 gypi_values = exec_script( |
10 "//build/gypi_to_gn.py", | 10 "//build/gypi_to_gn.py", |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 sources += rebase_path(gypi_values.chrome_browser_ui_non_ash_sources, | 193 sources += rebase_path(gypi_values.chrome_browser_ui_non_ash_sources, |
194 ".", "//chrome") | 194 ".", "//chrome") |
195 } | 195 } |
196 if (use_athena) { | 196 if (use_athena) { |
197 sources += rebase_path(gypi_values.chrome_browser_ui_athena_sources, | 197 sources += rebase_path(gypi_values.chrome_browser_ui_athena_sources, |
198 ".", "//chrome") | 198 ".", "//chrome") |
199 } else { # Not athena. | 199 } else { # Not athena. |
200 if (!is_android) { | 200 if (!is_android) { |
201 sources += rebase_path( | 201 sources += rebase_path( |
202 gypi_values.chrome_browser_ui_non_athena_non_android_sources, | 202 gypi_values.chrome_browser_ui_non_athena_non_android_sources, |
203 ".", "//chrome") | 203 ".", "//chrome") |
204 } | 204 } |
205 if (use_ash) { | 205 if (use_ash) { |
206 sources += rebase_path( | 206 sources += rebase_path( |
207 gypi_values.chrome_browser_ui_ash_non_athena_sources, | 207 gypi_values.chrome_browser_ui_ash_non_athena_sources, |
208 ".", "//chrome") | 208 ".", "//chrome") |
209 } | 209 } |
210 } | 210 } |
211 if (toolkit_views) { | 211 if (toolkit_views) { |
212 sources += rebase_path(gypi_values.chrome_browser_ui_views_sources, | 212 sources += rebase_path(gypi_values.chrome_browser_ui_views_sources, |
213 ".", "//chrome") | 213 ".", "//chrome") |
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
473 "//chrome/browser", | 473 "//chrome/browser", |
474 "//content/public/browser", | 474 "//content/public/browser", |
475 "//content/public/common", | 475 "//content/public/common", |
476 "//content/test:test_support", | 476 "//content/test:test_support", |
477 "//net:test_support", | 477 "//net:test_support", |
478 "//skia", | 478 "//skia", |
479 "//testing/gtest", | 479 "//testing/gtest", |
480 "//ui/base", | 480 "//ui/base", |
481 ] | 481 ] |
482 } | 482 } |
OLD | NEW |