| 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/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 if (is_mac) { | 7 if (is_mac) { |
| 8 import("//build/config/mac/mac_sdk.gni") | 8 import("//build/config/mac/mac_sdk.gni") |
| 9 } | 9 } |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 "//base:i18n", | 80 "//base:i18n", |
| 81 "//base/third_party/dynamic_annotations", | 81 "//base/third_party/dynamic_annotations", |
| 82 "//skia", | 82 "//skia", |
| 83 "//third_party/icu", | 83 "//third_party/icu", |
| 84 "//ui/gfx", | 84 "//ui/gfx", |
| 85 "//ui/gfx/geometry", | 85 "//ui/gfx/geometry", |
| 86 "//url", | 86 "//url", |
| 87 ] | 87 ] |
| 88 | 88 |
| 89 if (use_aura) { | 89 if (use_aura) { |
| 90 # deps += [ "//ui/aura" ] TODO(GYP) | 90 deps += [ "//ui/aura" ] |
| 91 } | 91 } |
| 92 | 92 |
| 93 if (is_mac) { | 93 if (is_mac) { |
| 94 # Mac-Aura does not support printing. | 94 # Mac-Aura does not support printing. |
| 95 if (use_aura) { | 95 if (use_aura) { |
| 96 sources -= [ | 96 sources -= [ |
| 97 "printed_document_mac.cc", | 97 "printed_document_mac.cc", |
| 98 ] | 98 ] |
| 99 } else { | 99 } else { |
| 100 sources += [ | 100 sources += [ |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 # 'type': 'none', | 247 # 'type': 'none', |
| 248 # 'variables': { | 248 # 'variables': { |
| 249 # 'java_in_dir': '../printing/android/java', | 249 # 'java_in_dir': '../printing/android/java', |
| 250 # }, | 250 # }, |
| 251 # 'dependencies': [ | 251 # 'dependencies': [ |
| 252 # '../base/base.gyp:base_java', | 252 # '../base/base.gyp:base_java', |
| 253 # ], | 253 # ], |
| 254 # 'includes': [ '../build/java.gypi' ], | 254 # 'includes': [ '../build/java.gypi' ], |
| 255 #} | 255 #} |
| 256 } | 256 } |
| OLD | NEW |