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 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
9 | 9 |
10 about_credits_file = "$target_gen_dir/about_credits.html" | 10 about_credits_file = "$target_gen_dir/about_credits.html" |
(...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
517 #"../win8/win8.gyp:metro_viewer", TODO(GYP) | 517 #"../win8/win8.gyp:metro_viewer", TODO(GYP) |
518 ] | 518 ] |
519 forward_dependent_configs_from += [ | 519 forward_dependent_configs_from += [ |
520 #"../ui/views/controls/webview/webview.gyp:webview", TODO(GYP) | 520 #"../ui/views/controls/webview/webview.gyp:webview", TODO(GYP) |
521 #"../ui/views/views.gyp:views", TODO(GYP) | 521 #"../ui/views/views.gyp:views", TODO(GYP) |
522 ] | 522 ] |
523 } else { | 523 } else { |
524 # Non-Windows. | 524 # Non-Windows. |
525 sources += rebase_path(gypi_values.chrome_browser_non_win_sources, | 525 sources += rebase_path(gypi_values.chrome_browser_non_win_sources, |
526 ".", "//chrome") | 526 ".", "//chrome") |
527 if (use_aura) { | 527 if (toolkit_views) { |
528 deps += [ | 528 deps += [ |
529 #"../ui/views/controls/webview/webview.gyp:webview", TODO(GYP) | 529 #"../ui/views/controls/webview/webview.gyp:webview", TODO(GYP) |
530 #"../ui/views/views.gyp:views", TODO(GYP) | 530 #"../ui/views/views.gyp:views", TODO(GYP) |
531 ] | 531 ] |
532 # TODO(GYP) why is this needed? Very susicious. | 532 # TODO(GYP) why is this needed? Very susicious. |
533 # "include_dirs": [ | 533 # "include_dirs": [ |
534 # "<(INTERMEDIATE_DIR)/chrome", | 534 # "<(INTERMEDIATE_DIR)/chrome", |
535 # ], | 535 # ], |
536 } | 536 } |
537 } | 537 } |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
651 # TODO(GYP) write internal action | 651 # TODO(GYP) write internal action |
652 if (false) { #if (is_chrome_branded) { | 652 if (false) { #if (is_chrome_branded) { |
653 action("chrome_internal_resources_gen") { | 653 action("chrome_internal_resources_gen") { |
654 # TODO(GYP) | 654 # TODO(GYP) |
655 } | 655 } |
656 } else { | 656 } else { |
657 group("chrome_internal_resources_gen") { | 657 group("chrome_internal_resources_gen") { |
658 # Empty placeholder. | 658 # Empty placeholder. |
659 } | 659 } |
660 } | 660 } |
OLD | NEW |