| 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("//build/gypi_to_gn.py", | 9 gypi_values = exec_script("//build/gypi_to_gn.py", |
| 10 [ rebase_path("../../chrome_browser_ui.gypi") ], | 10 [ rebase_path("../../chrome_browser_ui.gypi") ], |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 "//components/suggestions/proto", | 110 "//components/suggestions/proto", |
| 111 "//components/url_formatter", | 111 "//components/url_formatter", |
| 112 "//device/nfc", | 112 "//device/nfc", |
| 113 "//media", | 113 "//media", |
| 114 "//net:net_with_v8", | 114 "//net:net_with_v8", |
| 115 "//storage/browser", | 115 "//storage/browser", |
| 116 "//storage/common", | 116 "//storage/common", |
| 117 "//third_party/WebKit/public:resources", | 117 "//third_party/WebKit/public:resources", |
| 118 "//third_party/adobe/flash:flapper_version_h", | 118 "//third_party/adobe/flash:flapper_version_h", |
| 119 "//third_party/leveldatabase", | 119 "//third_party/leveldatabase", |
| 120 "//third_party/libjingle", |
| 120 "//third_party/mojo/src/mojo/edk/system", | 121 "//third_party/mojo/src/mojo/edk/system", |
| 121 "//third_party/libjingle", | |
| 122 "//third_party/re2", | 122 "//third_party/re2", |
| 123 "//ui/base/ime", | 123 "//ui/base/ime", |
| 124 "//ui/compositor", | 124 "//ui/compositor", |
| 125 "//ui/surface", | 125 "//ui/surface", |
| 126 "//ui/web_dialogs", | 126 "//ui/web_dialogs", |
| 127 "//v8", | 127 "//v8", |
| 128 ] | 128 ] |
| 129 } else { | 129 } else { |
| 130 # iOS. | 130 # iOS. |
| 131 sources += | 131 sources += |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 rebase_path(gypi_values.chrome_browser_ui_win_sources, ".", "//chrome") | 383 rebase_path(gypi_values.chrome_browser_ui_win_sources, ".", "//chrome") |
| 384 sources -= [ "views/frame/taskbar_decorator.cc" ] | 384 sources -= [ "views/frame/taskbar_decorator.cc" ] |
| 385 public_deps += [ | 385 public_deps += [ |
| 386 "//ui/views", | 386 "//ui/views", |
| 387 "//ui/views/controls/webview", | 387 "//ui/views/controls/webview", |
| 388 ] | 388 ] |
| 389 deps += [ | 389 deps += [ |
| 390 "//chrome/browser/metro_utils", | 390 "//chrome/browser/metro_utils", |
| 391 "//chrome/installer/util:strings", | 391 "//chrome/installer/util:strings", |
| 392 "//google_update", | 392 "//google_update", |
| 393 "//third_party/wtl", | |
| 394 "//third_party/iaccessible2", | 393 "//third_party/iaccessible2", |
| 395 "//third_party/isimpledom", | 394 "//third_party/isimpledom", |
| 395 "//third_party/wtl", |
| 396 "//ui/app_list", | 396 "//ui/app_list", |
| 397 ] | 397 ] |
| 398 if (!is_chrome_branded) { | 398 if (!is_chrome_branded) { |
| 399 deps -= [ "//google_update" ] | 399 deps -= [ "//google_update" ] |
| 400 sources -= [ "webui/help/version_updater_win.cc" ] | 400 sources -= [ "webui/help/version_updater_win.cc" ] |
| 401 sources += [ | 401 sources += [ |
| 402 "webui/help/version_updater_basic.cc", | 402 "webui/help/version_updater_basic.cc", |
| 403 "webui/help/version_updater_basic.h", | 403 "webui/help/version_updater_basic.h", |
| 404 ] | 404 ] |
| 405 } | 405 } |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 "//chrome/browser", | 593 "//chrome/browser", |
| 594 "//content/public/browser", | 594 "//content/public/browser", |
| 595 "//content/public/common", | 595 "//content/public/common", |
| 596 "//content/test:test_support", | 596 "//content/test:test_support", |
| 597 "//net:test_support", | 597 "//net:test_support", |
| 598 "//skia", | 598 "//skia", |
| 599 "//testing/gtest", | 599 "//testing/gtest", |
| 600 "//ui/base", | 600 "//ui/base", |
| 601 ] | 601 ] |
| 602 } | 602 } |
| OLD | NEW |