Chromium Code Reviews| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/chrome_build.gni") | 6 import("//build/config/chrome_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/locales.gni") | 9 import("//build/config/locales.gni") |
| 10 import("//build/config/sanitizers/sanitizers.gni") | 10 import("//build/config/sanitizers/sanitizers.gni") |
| (...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 452 "$root_out_dir/First Run", | 452 "$root_out_dir/First Run", |
| 453 ] | 453 ] |
| 454 } | 454 } |
| 455 } else if (is_mac) { | 455 } else if (is_mac) { |
| 456 chrome_helper_name = chrome_product_full_name + " Helper" | 456 chrome_helper_name = chrome_product_full_name + " Helper" |
| 457 chrome_framework_name = chrome_product_full_name + " Framework" | 457 chrome_framework_name = chrome_product_full_name + " Framework" |
| 458 | 458 |
| 459 group("chrome") { | 459 group("chrome") { |
| 460 deps = [ | 460 deps = [ |
| 461 ":chrome_app", | 461 ":chrome_app", |
| 462 "//third_party/swiftshader", | |
|
Robert Sesek
2016/09/21 21:23:43
This doesn't belong on this target, which is just
sugoi
2016/09/21 21:31:22
This code won't land, this is purely for test purp
| |
| 462 ] | 463 ] |
| 463 | 464 |
| 464 data_deps = [ | 465 data_deps = [ |
| 465 ":chrome_app", | 466 ":chrome_app", |
| 466 ] | 467 ] |
| 467 | 468 |
| 468 if (debug_devtools) { | 469 if (debug_devtools) { |
| 469 deps += [ ":devtools_debug_resources" ] | 470 deps += [ ":devtools_debug_resources" ] |
| 470 } | 471 } |
| 471 | 472 |
| (...skipping 1075 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1547 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1548 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1548 "//chrome/tools/build/linux/chrome-wrapper", | 1549 "//chrome/tools/build/linux/chrome-wrapper", |
| 1549 "//third_party/xdg-utils/scripts/xdg-mime", | 1550 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1550 "//third_party/xdg-utils/scripts/xdg-settings", | 1551 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1551 ] | 1552 ] |
| 1552 outputs = [ | 1553 outputs = [ |
| 1553 "$root_out_dir/{{source_file_part}}", | 1554 "$root_out_dir/{{source_file_part}}", |
| 1554 ] | 1555 ] |
| 1555 } | 1556 } |
| 1556 } | 1557 } |
| OLD | NEW |