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") ], |
11 "scope", | 11 "scope", |
12 [ "../../chrome_browser_ui.gypi" ]) | 12 [ "../../chrome_browser_ui.gypi" ]) |
13 | 13 |
14 static_library("ui") { | 14 source_set("ui") { |
15 output_name = "browser_ui" | 15 output_name = "browser_ui" |
16 | 16 |
17 sources = [] | 17 sources = [] |
18 defines = [] | 18 defines = [] |
19 libs = [] | 19 libs = [] |
20 | 20 |
21 configs += [ | 21 configs += [ |
22 "//build/config/compiler:wexit_time_destructors", | 22 "//build/config/compiler:wexit_time_destructors", |
23 "//third_party/WebKit/public:debug_devtools", | 23 "//third_party/WebKit/public:debug_devtools", |
24 ] | 24 ] |
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
534 "//chrome/browser", | 534 "//chrome/browser", |
535 "//content/public/browser", | 535 "//content/public/browser", |
536 "//content/public/common", | 536 "//content/public/common", |
537 "//content/test:test_support", | 537 "//content/test:test_support", |
538 "//net:test_support", | 538 "//net:test_support", |
539 "//skia", | 539 "//skia", |
540 "//testing/gtest", | 540 "//testing/gtest", |
541 "//ui/base", | 541 "//ui/base", |
542 ] | 542 ] |
543 } | 543 } |
OLD | NEW |