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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/sanitizers/sanitizers.gni") | 6 import("//build/config/sanitizers/sanitizers.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//build/config/win/manifest.gni") | 8 import("//build/config/win/manifest.gni") |
9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 # TODO(GYP) this should be a bundle. Lots of other stuff in this target. | 477 # TODO(GYP) this should be a bundle. Lots of other stuff in this target. |
478 # GYP version: content/content_shell.gypi:content_shell_framework | 478 # GYP version: content/content_shell.gypi:content_shell_framework |
479 shared_library("framework") { | 479 shared_library("framework") { |
480 testonly = true | 480 testonly = true |
481 | 481 |
482 # TODO(GYP) bug 546894: Fix GN and toolchains to handle spaces here. | 482 # TODO(GYP) bug 546894: Fix GN and toolchains to handle spaces here. |
483 #output_name = "$content_shell_product_name Framework" | 483 #output_name = "$content_shell_product_name Framework" |
484 output_name = "content_shell_framework" # Temporary one with no spaces. | 484 output_name = "content_shell_framework" # Temporary one with no spaces. |
485 | 485 |
486 sources = [ | 486 sources = [ |
487 "shell_content_main.cc", | 487 "app/shell_content_main.cc", |
488 "shell_content_main.h", | 488 "app/shell_content_main.h", |
489 ] | 489 ] |
490 | 490 |
491 deps = [ | 491 deps = [ |
492 ":content_shell_lib", | 492 ":content_shell_lib", |
493 ] | 493 ] |
494 } | 494 } |
495 } | 495 } |
OLD | NEW |