| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 6 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| 7 import("//third_party/WebKit/Source/config.gni") | 7 import("//third_party/WebKit/Source/config.gni") |
| 8 import("//third_party/WebKit/Source/platform/platform_generated.gni") | 8 import("//third_party/WebKit/Source/platform/platform_generated.gni") |
| 9 | 9 |
| 10 platform_gypi = exec_script( | 10 platform_gypi = exec_script( |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 "//third_party/WebKit/Source:non_test_config", | 178 "//third_party/WebKit/Source:non_test_config", |
| 179 ] | 179 ] |
| 180 | 180 |
| 181 defines = [ | 181 defines = [ |
| 182 "BLINK_PLATFORM_IMPLEMENTATION=1", | 182 "BLINK_PLATFORM_IMPLEMENTATION=1", |
| 183 "INSIDE_BLINK", | 183 "INSIDE_BLINK", |
| 184 ] | 184 ] |
| 185 | 185 |
| 186 include_dirs = [ | 186 include_dirs = [ |
| 187 #"$angle_path/include", | 187 #"$angle_path/include", |
| 188 # FIXME: This should be removed once files include the generated files with | 188 "$root_gen_dir/blink", |
| 189 # the correct path. | |
| 190 "$root_gen_dir/blink/platform", | |
| 191 ] | 189 ] |
| 192 | 190 |
| 193 deps = [ | 191 deps = [ |
| 194 ":make_platform_generated", | 192 ":make_platform_generated", |
| 195 "//gpu/command_buffer/client:gles2_c_lib", | 193 "//gpu/command_buffer/client:gles2_c_lib", |
| 196 "//skia", | 194 "//skia", |
| 197 "//third_party:jpeg", | 195 "//third_party:jpeg", |
| 198 "//third_party/harfbuzz-ng", | 196 "//third_party/harfbuzz-ng", |
| 199 "//third_party/iccjpeg", | 197 "//third_party/iccjpeg", |
| 200 "//third_party/icu", | 198 "//third_party/icu", |
| (...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 | 456 |
| 459 deps = [ ":blink_common" ] | 457 deps = [ ":blink_common" ] |
| 460 } | 458 } |
| 461 } | 459 } |
| 462 | 460 |
| 463 # This config is a placeholder to set up the V8 include path while the V8 GN | 461 # This config is a placeholder to set up the V8 include path while the V8 GN |
| 464 # build is being worked on. | 462 # build is being worked on. |
| 465 config("v8_stub_config") { | 463 config("v8_stub_config") { |
| 466 include_dirs = [ "//v8/include" ] | 464 include_dirs = [ "//v8/include" ] |
| 467 } | 465 } |
| OLD | NEW |