Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1040)

Side by Side Diff: tools/gn/BUILD.gn

Issue 22290010: Add support for data deps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove switch Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | tools/gn/command_desc.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 static_library("gn_lib") { 1 static_library("gn_lib") {
2 sources = [ 2 sources = [
3 "build_settings.cc", 3 "build_settings.cc",
4 "build_settings.h", 4 "build_settings.h",
5 "command_desc.cc", 5 "command_desc.cc",
6 "command_gen.cc", 6 "command_gen.cc",
7 "command_help.cc", 7 "command_help.cc",
8 "commands.cc", 8 "commands.cc",
9 "commands.h", 9 "commands.h",
10 "config.cc", 10 "config.cc",
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 "tokenizer.cc", 100 "tokenizer.cc",
101 "tokenizer.h", 101 "tokenizer.h",
102 "toolchain.cc", 102 "toolchain.cc",
103 "toolchain.h", 103 "toolchain.h",
104 "toolchain_manager.cc", 104 "toolchain_manager.cc",
105 "toolchain_manager.h", 105 "toolchain_manager.h",
106 "value.cc", 106 "value.cc",
107 "value.h", 107 "value.h",
108 "value_extractors.cc", 108 "value_extractors.cc",
109 "value_extractors.h", 109 "value_extractors.h",
110 "variables.cc",
111 "variables.h",
110 ] 112 ]
111 deps = [ 113 deps = [
112 "//base", 114 "//base",
113 "//base/third_party/dynamic_annotations", 115 "//base/third_party/dynamic_annotations",
114 ] 116 ]
115 } 117 }
116 118
117 executable("gn") { 119 executable("gn") {
118 sources = [ 120 sources = [
119 "gn_main.cc", 121 "gn_main.cc",
(...skipping 25 matching lines...) Expand all
145 "//base:run_all_unittests", 147 "//base:run_all_unittests",
146 "//base:test_support_base", 148 "//base:test_support_base",
147 "//testing:gtest", 149 "//testing:gtest",
148 ] 150 ]
149 } 151 }
150 152
151 executable("generate_test_gn_data") { 153 executable("generate_test_gn_data") {
152 sources = [ "generate_test_gn_data.cc" ] 154 sources = [ "generate_test_gn_data.cc" ]
153 deps = [ "//base" ] 155 deps = [ "//base" ]
154 } 156 }
OLDNEW
« no previous file with comments | « no previous file | tools/gn/command_desc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698