| 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("//sky/engine/build/scripts/scripts.gni") | 6 import("//sky/engine/build/scripts/scripts.gni") |
| 7 import("//sky/engine/config.gni") | 7 import("//sky/engine/config.gni") |
| 8 | 8 |
| 9 # Most targets in this file are private actions so use that as the default. | 9 # Most targets in this file are private actions so use that as the default. |
| 10 visibility = [":*"] | 10 visibility = [":*"] |
| (...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 636 "BLINK_PLATFORM_IMPLEMENTATION=1", | 636 "BLINK_PLATFORM_IMPLEMENTATION=1", |
| 637 "INSIDE_BLINK", | 637 "INSIDE_BLINK", |
| 638 ] | 638 ] |
| 639 | 639 |
| 640 include_dirs = [ | 640 include_dirs = [ |
| 641 "$root_gen_dir/sky", | 641 "$root_gen_dir/sky", |
| 642 ] | 642 ] |
| 643 | 643 |
| 644 deps = [ | 644 deps = [ |
| 645 ":make_platform_generated", | 645 ":make_platform_generated", |
| 646 "//base", | 646 "//base:base", |
| 647 "//gpu/command_buffer/client:gles2_c_lib", | 647 "//gpu/command_buffer/client:gles2_c_lib", |
| 648 "//mojo/application", | 648 "//mojo/application", |
| 649 "//mojo/common", | 649 "//mojo/common:common", |
| 650 "//mojo/public/c/system:for_shared_library", | 650 "//mojo/public/c/system:for_shared_library", |
| 651 "//mojo/public/cpp/bindings", | 651 "//mojo/public/cpp/bindings", |
| 652 "//mojo/public/cpp/system", | 652 "//mojo/public/cpp/system", |
| 653 "//mojo/public/cpp/utility", | 653 "//mojo/public/cpp/utility", |
| 654 "//skia", | 654 "//skia", |
| 655 "//sky/engine/platform/heap", | 655 "//sky/engine/platform/heap", |
| 656 "//sky/engine/wtf", | 656 "//sky/engine/wtf", |
| 657 "//third_party/harfbuzz-ng", | 657 "//third_party/harfbuzz-ng", |
| 658 "//third_party/iccjpeg", | 658 "//third_party/iccjpeg", |
| 659 "//third_party/icu", | 659 "//third_party/icu", |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 807 # See https://bugs.webkit.org/show_bug.cgi?id=62916. | 807 # See https://bugs.webkit.org/show_bug.cgi?id=62916. |
| 808 # TODO(GYP) | 808 # TODO(GYP) |
| 809 #'cflags': ['-marm'], | 809 #'cflags': ['-marm'], |
| 810 # 'conditions': [ | 810 # 'conditions': [ |
| 811 # ['OS=="android"', { | 811 # ['OS=="android"', { |
| 812 # 'cflags!': ['-mthumb'], | 812 # 'cflags!': ['-mthumb'], |
| 813 # }], | 813 # }], |
| 814 # ], | 814 # ], |
| 815 } | 815 } |
| 816 } | 816 } |
| OLD | NEW |