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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 "//chrome/browser/ui/views", | 268 "//chrome/browser/ui/views", |
269 "//components/feedback/proto", | 269 "//components/feedback/proto", |
270 "//third_party/libusb", | 270 "//third_party/libusb", |
271 "//ui/events", | 271 "//ui/events", |
272 ] | 272 ] |
273 sources += rebase_path(gypi_values.chrome_browser_ui_android_sources, | 273 sources += rebase_path(gypi_values.chrome_browser_ui_android_sources, |
274 ".", "//chrome") | 274 ".", "//chrome") |
275 | 275 |
276 defines += [ "CHROME_BUILD_ID=" + android_chrome_build_id ] | 276 defines += [ "CHROME_BUILD_ID=" + android_chrome_build_id ] |
277 } else { # Non-Android. | 277 } else { # Non-Android. |
| 278 deps += [ |
| 279 "//components/sad_tab", |
| 280 ] |
278 sources += rebase_path(gypi_values.chrome_browser_ui_non_android_sources, | 281 sources += rebase_path(gypi_values.chrome_browser_ui_non_android_sources, |
279 ".", "//chrome") | 282 ".", "//chrome") |
280 } | 283 } |
281 | 284 |
282 if (is_mac) { | 285 if (is_mac) { |
283 sources += rebase_path(gypi_values.chrome_browser_ui_mac_sources, | 286 sources += rebase_path(gypi_values.chrome_browser_ui_mac_sources, |
284 ".", "//chrome") | 287 ".", "//chrome") |
285 sources -= [ | 288 sources -= [ |
286 # Mac has its own way of drawing tabs. | 289 # Mac has its own way of drawing tabs. |
287 "tabs/tab_resources.cc", | 290 "tabs/tab_resources.cc", |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
452 "//chrome/browser", | 455 "//chrome/browser", |
453 "//content/public/browser", | 456 "//content/public/browser", |
454 "//content/public/common", | 457 "//content/public/common", |
455 "//content/test:test_support", | 458 "//content/test:test_support", |
456 "//net:test_support", | 459 "//net:test_support", |
457 "//skia", | 460 "//skia", |
458 "//testing/gtest", | 461 "//testing/gtest", |
459 "//ui/base", | 462 "//ui/base", |
460 ] | 463 ] |
461 } | 464 } |
OLD | NEW |