Home | History | Annotate | Download | only in environment
      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
      3 # found in the LICENSE file.
      4 
      5 source_set("environment") {
      6   sources = [
      7     "logging.h",
      8     "environment.h",
      9   ]
     10 
     11   public_deps = [ "//mojo/public/c/environment" ]
     12 
     13   deps = [ "//mojo/public/cpp/system" ]
     14 }
     15 
     16 source_set("standalone") {
     17   sources = [
     18     "lib/default_async_waiter.cc",
     19     "lib/default_async_waiter.h",
     20     "lib/default_logger.cc",
     21     "lib/default_logger.h",
     22     "lib/environment.cc",
     23     "lib/logging.cc",
     24   ]
     25 
     26   public_deps = [ ":environment" ]
     27 
     28   deps = [
     29     "//mojo/public/c/environment",
     30     "//mojo/public/cpp/utility",
     31   ]
     32 }
     33